Error:(2, 0) Plugin with id 'com.github.dcendents.android-maven' not found in android -
i use following library add material design android project
https://github.com/boxme/squarecamera
but after importing module, following error. how can fix it
error:(2, 0) plugin id 'com.github.dcendents.android-maven' not found.
update buildscript dependencies build.gradle file located in 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' // line need add } }
hope you
Comments
Post a Comment