com.github.dcendents.android-maven not found

作者 mexican 日期 2017-05-27
com.github.dcendents.android-maven not found

解决 Plugin with id ‘com.github.dcendents.android-maven’ not found.
在Android studio中引用第三方库的时候,报这个错

这是原因为该项目的原作者会把项目发布到maven中央仓库中,所以在gradle中添加了相关的maven发布任务。
咱们又不能连到maven的仓库,所以我们把你要导入的第三方build.gradle中。

###解决办法
在build.gradle下除了下面几个之外的所以东西

apply plugin: 'com.android.application'
apply plugin: 'com.android.library'
android{
}
dependencies{
}

然后Rebuild应该就可以解决这个问题了!