我使用以下库将材料设计添加到我的android项目
https://github.com/boxme/SquareCamera
但是在将其作为模块导入后,我收到以下错误。我该如何解决呢?
Error:(2, 0) Plugin with id 'com.github.dcendents.android-maven' not found.
答案 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
}
}
希望这会对你有所帮助