创建包含jar和aar的Android库

时间:2016-08-17 04:59:50

标签: android jar dependencies android-library aar

我有一个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

1 个答案:

答案 0 :(得分:0)

使用android-fat-aar创建包含另一个aar

的Android库