错误:(2,0)带有id' com.github.dcendents.android-maven'的插件在android中找不到

时间:2016-11-08 12:37:44

标签: android maven camera android-camera

我使用以下库将材料设计添加到我的android项目

https://github.com/boxme/SquareCamera

但是在将其作为模块导入后,我收到以下错误。我该如何解决呢?

Error:(2, 0) Plugin with id 'com.github.dcendents.android-maven' not found.

1 个答案:

答案 0 :(得分:0)

更新build.gradle文件所在的buildscript依赖项  Your_Project /的build.gradle

classpath' com.github.dcendents:android-maven-gradle-plugin:1.5'

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.0'
        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' // This line you need to add

    }
}

希望这会对你有所帮助