无法导入Android库

时间:2018-11-11 20:07:16

标签: android jcenter

我正在尝试使用RecyclerView Helper,但是无法使用它进行项目工作。 这是我要使用的库:https://github.com/nisrulz/recyclerviewhelper

但是出现此错误:

   Could not find method implementation() for arguments [com.android.support:appcompat-v7:{latest version}] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
    Please install the Android Support Repository from the Android SDK Manager.

这是我的build.gradle:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.0'

        def supportLibVersion="{latest version}"
// Required
        implementation "com.android.support:appcompat-v7:${supportLibVersion}"
        implementation "com.android.support:recyclerview-v7:${supportLibVersion}"

// RecyclerViewHelper
        implementation "com.github.nisrulz:recyclerviewhelper:${supportLibVersion}"
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

2 个答案:

答案 0 :(得分:1)

我认为latest version是一个占位符文本。 latest version应该替换为所需的最新版本的SDK。

请使用

def supportLibVersion="27.1.1"

代替

def supportLibVersion="{latest version}"

您的图书馆文档中也有此行

  

其中{latest version}对应于27.1.1中的发布版本。

答案 1 :(得分:0)

这是project.gradle文件,您在错误的gradle文件中导入了库。请在app.gradle文件中导入该库。

将其导入app.gradle

dependencies {



implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'

implementation 'com.github.nisrulz:recyclerviewhelper:27.1.1'

}

将其导入project.gradle

allprojects {
  repositories {
    google()
    jcenter()
  }
}