将gradle项目依赖项编译到android库arr

时间:2015-07-23 12:39:51

标签: java android gradle

我使用android studio with gradle来构建android库。

我正在向库中添加项目依赖项,但我希望构建任务在arr输出中包含所有项目类。

目前,所有项目类都不包含在arr中(就像其他外部依赖项一样)

这是我使用的gradle文件:

    android {
    compileSdkVersion 19
    buildToolsVersion '19.1.0'
    defaultConfig {
        minSdkVersion 19
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

}



dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'io.reactivex:rxjava:1.0.12'
    compile project(':audit')
}

感谢。

1 个答案:

答案 0 :(得分:0)

使用传递标志包含依赖项。

compile ('com.somepackage:LIBRARY_NAME:1.0.0@aar'){
    transitive=true
}