我有一个Android库 MyLib ,我需要创建Android Archive(aar)。此库使用两个以上的依赖项,一个是 abc.jar ,另一个是 xyz.aar 。
我在库的 / libs 文件夹中有 abc.jar 文件,并且 xyz.aar 将其添加为模块依赖项
库的gradle文件看起来像
apply plugin: 'com.android.library'
android {
compileSdkVersion 24
buildToolsVersion "24.0.0"
defaultConfig {
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.1.1'
compile project(':xyz')
}
为MyLib创建aar文件并尝试将其与示例项目一起使用后,我无法使用 xyz.aar 中的类,其中 abc.jar < / strong>可以访问。
这让我想知道一个aar是否可以在其中包含另一个aar依赖。因此可以在anot中访问aar