allprojects {
repositories {
//新加
mavenCentral()
maven { url "https://jitpack.io" }
// mavenLocal()
jcenter(){ url 'http://jcenter.bintray.com/'}
google()
//导入aar 用这个
flatDir {
//由于libs module 中引用啦aar,所以要这样处理
dirs project(":aaa").file("libs")
}
}
}
网友评论