问题在Android Studio中添加库recyclerView

时间:2019-07-20 06:57:28

标签: android

我无法在android studio中添加库。我需要帮助来解决这个问题。感激

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.core:core-ktx:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    //noinspection GradleCompatible
    implementation 'com.android.support:recyclerview-v7:28.0.0'
}

建立项目时出错:

ERROR: Failed to resolve: recyclerview 
Affected Modules: app

3 个答案:

答案 0 :(得分:0)

您不需要在recycleview的gradle中添加androidx lib。只需将其添加到lib下即可。该软件包中包含recycleView

implementation 'com.google.android.material:material:1.0.0'

答案 1 :(得分:0)

使用:更改recyclerview库:

    implementation 'androidx.recyclerview:recyclerview:1.0.0'

答案 2 :(得分:0)

您正在使用AndroidX的所有依赖项。这意味着您的项目在AndroidX中。但是您要添加的RecyclerView依赖项来自于AndroidX无法使用的支持库。

改为使用以下AndroidX依赖项:

implementation 'androidx.recyclerview:recyclerview:1.0.0'