AS
许久不去运行也未添加新需求的项目,今天因增加需求运行项目是突报错误:
Third Day——突报异常:Error:Failed to resolve: recyclerview-v7
SDK Tools版本:
Third Day——突报异常:Error:Failed to resolve: recyclerview-v7

Third Day——突报异常:Error:Failed to resolve: recyclerview-v7

解决办法增加依赖

   android {
        compileSdkVersion 26
        buildToolsVersion '26.0.2'
    
        ...
        defaultConfig {
            applicationId "com.fox.system.managesystem"
            minSdkVersion 19
            targetSdkVersion 26
          ...
        }
      ...
      }
    dependencies {
      ...
        compile ('com.android.support:recyclerview-v7:26+')
        ...
    }

其中如下依赖不能解决问题。

     compile ('com.android.support:recyclerview-v7:26.1.0')

相关文章:

  • 2022-12-23
  • 2021-07-01
  • 2021-10-28
  • 2022-12-23
  • 2022-12-23
  • 2021-08-11
猜你喜欢
  • 2021-06-28
  • 2022-12-23
  • 2021-09-21
  • 2021-07-28
  • 2021-08-27
  • 2021-06-10
相关资源
相似解决方案