我们正在为我们的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工作?

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐