在Android studio中引用第三方庫的時候,報這個錯。android
Error:(2, 0) Plugin with id 'com.github.dcendents.android-maven' not found.git
搜了一下。github
"這是緣由爲該項目的原做者會把項目發佈到maven中央倉庫中,因此在gradle中添加了相關的maven發佈任務。app
我們又不能連到maven的倉庫,因此咱們把你要導入的第三方build.gradle中"[1]無用的部分都刪掉。maven
按照做者的方法gradle
刪掉除了ui
android{}
dependencies{}
以外的部分後仍是不行,與pulltorefresh庫中的build.gradle對比了一下,spa
在最頂部保留.net
apply plugin: 'com.android.library'
rebuild一下,項目好用了!code
[1] http://blog.csdn.net/cxzczxcxzc/article/details/48976843