代码之家  ›  专栏  ›  技术社区  ›  Suresh Kumar

未能解析:RecyclerView-V7

  •  12
  • Suresh Kumar  · 技术社区  · 6 年前

    将依赖项实现“com.azoft.carousellayoutmanager:carousel:1.2.4”添加到我的项目时,Android Studio引发的异常未能解决:recyclerview-v7。然后我尝试为RecyclerView添加依赖项。仍然出现同样的错误。

    apply plugin: 'com.android.application'
    
    android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.someapp"
        minSdkVersion 16
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
    
        vectorDrawables.useSupportLibrary = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    }
    
    dependencies {
        implementation fileTree(include: ['*.jar'], dir: 'libs')
        implementation 'com.android.support:appcompat-v7:27.1.1'
        implementation 'com.android.support.constraint:constraint-layout:1.1.2'
        implementation 'com.google.firebase:firebase-crash:16.0.1'
        implementation 'com.android.support:design:27.1.1'
        implementation 'com.squareup.retrofit2:retrofit:2.1.0'
        implementation 'com.squareup.retrofit2:converter-gson:2.1.0'
        implementation 'com.squareup.okhttp3:logging-interceptor:3.3.1'
        implementation 'com.commonsware.cwac:saferoom:0.4.1'
        implementation 'com.squareup.picasso:picasso:2.5.2'
        implementation 'com.android.support:cardview-v7:27.1.1'
    }
    
    apply plugin: 'com.google.gms.google-services'
    
    9 回复  |  直到 6 年前
        1
  •  39
  •   Radesh    6 年前

    我也有同样的问题,我要更改订单 repositories

     jcenter()
     google()
    

     google()
     jcenter()
    

        2
  •  2
  •   madfree    6 年前
    1. allprojects {
          repositories {
              google()
              jcenter()
          }
      }
      
        3
  •  1
  •   Abbas Sabeti    6 年前

    implementation "com.android.support:support-v4:28.0.0"
    implementation "com.android.support:appcompat-v7:28.0.0"
    implementation "com.android.support:support-vector-drawable:28.0.0"
    implementation "com.android.support:recyclerview-v7:28.0.0"
    implementation "com.android.support:design:28.0.0"
    implementation "com.android.support.constraint:constraint-layout:1.1.3"
    
        4
  •  0
  •   solidogen    6 年前

        5
  •  0
  •   Frank Odoom    6 年前

    它无法解析,因为您正在添加的版本可能不在Maven存储库中。检查您的API级别并选择适当的版本。

    link

        6
  •  0
  •   funbiscuit    6 年前

    Failed to resolve: recyclerview-v7 .即使这个项目以前工作过,我只是把它移到另一台机器上,而不更改渐变文件。

    C:\Users\username\.gradle

    C:\Users\username\.gradle\caches\modules-2\files-2.1\com.android.support\recyclerview-v7 会有帮助,但我没有检查。

        7
  •  0
  •   Homayoon Ahmadi    6 年前

    recyclerview-v7 要添加的库中的模块:

    compile ('YOUR_DEPENDENCY') {
        exclude module: 'recyclerview-v7'
    }
    
        8
  •  0
  •   37NPN    6 年前

        9
  •  -1
  •   Suresh Kumar    6 年前

    最后我找到了解决办法。将所有支持依赖项升级到最新版本,解决了问题。您可以检查依赖项的最新版本 here