gpt4 book ai didi

android - 成绩同步失败 : Unresolved dependencies

转载 作者:行者123 更新时间:2023-12-02 13:11:41 24 4
gpt4 key购买 nike

我尝试在 android studio 中将我的项目与 gradle 文件同步,但它失败了,我收到了上面的消息“ Grade sync failed: Unresolved dependencies ”。

我在构建选项卡中也遇到了这些错误:

  • 错误:无法解析“:app@debugUnitTest/compileClasspath”的依赖关系:无法解析androidx.fragment:fragment:[1.2.0]。
    显示详细资料
    受影响的模块:app
  • 错误:无法解析“:app@debugAndroidTest/compileClasspath”的依赖关系:无法解析androidx.fragment:fragment:[1.2.0]。
    显示详细资料
    受影响的模块:app
  • 错误:无法解析“:app@debug/compileClasspath”的依赖关系:无法解析androidx.fragment:fragment:[1.2.0]。
    显示详细资料
    受影响的模块:app

  • 这些是我在 build.gradle (Module:app) 中的依赖项
    dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.core:core-ktx:1.2.0'
    implementation 'com.google.android.material:material:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'androidx.navigation:navigation-fragment-ktx:2.2.1'
    implementation 'androidx.navigation:navigation-ui-ktx:2.2.1'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

    implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5'
    implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.5'
    implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.2.0'

    最佳答案

    嘿,我不太确定我没有找到 fragment 的任何依赖项

    dependencies {
    def fragment_version = "1.2.4"

    // Java language implementation
    implementation "androidx.fragment:fragment:$fragment_version"
    // Kotlin
    implementation "androidx.fragment:fragment-ktx:$fragment_version"
    // Testing Fragments in Isolation
    implementation "androidx.fragment:fragment-testing:$fragment_version"

    }

    把它放在依赖项部分

    关于android - 成绩同步失败 : Unresolved dependencies,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60912233/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com