首页 > 代码库 > 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解决办法
导入开源项目的时候老是报这个错
Error:(2, 0) Plugin with id ‘com.github.dcendents.android-maven‘ not found
解决办法:
首先在Project下那个build.grade里面添加全局依赖
buildscript {
repositories {
jcenter()
}
dependencies {
classpath ‘com.android.tools.build:gradle:1.5.0‘
//1.自动化maven打包插件
classpath ‘com.github.dcendents:android-maven-gradle-plugin:1.3‘
//2.自动上传至Bintray平台插件
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
按顺序来,先添加
classpath ‘com.github.dcendents:android-maven-gradle-plugin:1.3‘
添加完之后同步下,Android Studio下面的Event Log会出现com.jfrog.bintray not found的错误提示,maven那个错误提示已经没有了这时候再添加
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0"
点同步,等待同步完成Error:(2, 0) Plugin with id 'com.github.dcendents.android-maven' not found解决办法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。