我在android studio中有一个项目库,具有以下依赖项。
apply plugin: 'com.android.library'
android {
compileSdkVersion 26
defaultConfig {
minSdkVersion 19
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])//Local binary dependency
implementation 'com.android.support:appcompat-v7:26.1.0'//Remote binary dependency
api group: 'com.google.collections', name: 'google-collections', version: '1.0'
我的问题是如何构建一个带有依赖关系的jar / aar? 我尝试了很多方法,但它没有包括" google-collections"导出的jar / aar中的依赖?
我该怎么做?
感谢。