Error:(2, 0) Plugin with id 'com.github.dcendents.android-maven' not found在Studio里导入moudle时报错解决方案

  首先非常感谢作者特立独行的猪.帮助我解决了问题.参考链接      http://blog.csdn.net/u010111008/article/details/50413121

  今天在给项目添加一个moudle依赖时,出现了如下错误.

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

Error:(2, 0) Plugin with id 'com.github.dcendents.android-maven' not found在Studio里导入moudle时报错解决方案_第1张图片

  最后的解决方案如下:

  在工程下的build.gradle里添加如下代码,然后点击右上方的sync now. 同步一下即可.

        //1.自动化maven打包插件
        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
        //2.自动上传至Bintray平台插件
        classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0"
Error:(2, 0) Plugin with id 'com.github.dcendents.android-maven' not found在Studio里导入moudle时报错解决方案_第2张图片

  注意:classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'这一行这里, 后边的版本号"1.4.1",必须是你最新的maven版本号.如果不是的话, 同步后会出现下面的错误.

  Error:(2, 0) No service of type Factory available in ProjectScopeServices.
Error:(2, 0) Plugin with id 'com.github.dcendents.android-maven' not found在Studio里导入moudle时报错解决方案_第3张图片

  OVER.  有问题欢迎留言讨论!

  

你可能感兴趣的:(Error:(2, 0) Plugin with id 'com.github.dcendents.android-maven' not found在Studio里导入moudle时报错解决方案)