android 本地aar,android – 本地aar库的传递依赖项
我们正在为我们的API制作一些库,我们将为外部开发人员提供更轻松的生活。因此,我们创建了新的库项目,并将Retrofit和其他一些库作为依赖项。dependencies {compile 'com.android.support:appcompat-v7:23.3.0'compile 'com.google.code.gson:gson:2.6.2'compile 'com.squareup.re
我们正在为我们的API制作一些库,我们将为外部开发人员提供更轻松的生活。
因此,我们创建了新的库项目,并将Retrofit和其他一些库作为依赖项。
dependencies {
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.squareup.retrofit2:retrofit:2.0.1'
compile 'com.squareup.retrofit2:converter-gson:2.0.1'
compile 'com.squareup.okhttp3:okhttp:3.2.0'
}
现在,当我们构建它时,它会生成aar文件。
但是现在当我们将aar文件放到libs目录并将其设置为依赖项时,我们仍然必须在用户的build.gradle文件中添加相同的依赖项,这很糟糕。它应该来自图书馆,对吗?
repositories {
flatDir {
dirs 'libs'
}
}
dependencies {
compile(name: 'ourlibrary', ext: 'aar') {
transitive = true;
}
}
如何使transitive = true工作?
更多推荐
所有评论(0)