Android Studio导入库出现 Plugin with id 'com.github.dcendents.android-maven' not found.

Android Studio 导入一个github的库,首先 File–>new–>import Module,然后将下载的库导入,我这里导入的是 github 的actionSheet 库,然后出现此错误

Plugin with id 'com.github.dcendents.android-maven' not found.

发现出现错误的 原因是在 Module 中即导入的 library 的 build.gradle中有这两句

apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

首先在 stackoverflow 上大多数说 将 project 下 build.gradle 中的

 classpath 'com.android.tools.build:gradle:1.3.0'

改成更高的版本,试了也没用,最后通过在 project 的 build.gradle中改成如下:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.3.0'
        classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.1'
        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

即添加了两句 classpath “something”,于是编译成功,说明导入成功。接着,导入之后,需要
Open Module Settings–>Dependencies –> 点击“+”–> 第三个 Module dependency就可以看到我们刚刚导入的 library 库,选择该module,然后 OK 就可以使用了。

你可能感兴趣的:(android,库,Studio)