成绩同步失败:依赖关系未解决

时间:2020-03-29 09:22:34

标签: android android-studio android-fragments kotlin kotlin-coroutines

我尝试使用gradle文件同步android studio中的项目,但失败了,并且出现了以上消息“ 成绩同步失败:未解决的依赖项”。

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

  1. 错误:无法解析':app @ debugUnitTest / compileClasspath'的依赖关系:无法解析androidx.fragment:fragment:[1.2.0]。
    显示详细信息
    受影响的模块:应用程序
  2. 错误:无法解析':app @ debugAndroidTest / compileClasspath'的依赖关系:无法解析androidx.fragment:fragment:[1.2.0]。
    显示详细信息
    受影响的模块:应用程序
  3. 错误:无法解析':app @ debug / compileClasspath'的依赖关系:无法解析androidx.fragment:fragment:[1.2.0]。
    显示详细信息
    受影响的模块:应用程序

这些是我在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'

1 个答案:

答案 0 :(得分:3)

嘿,我对此不太确定,我没有发现片段的任何依赖关系

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"

}

将其放在依赖项部分