gradle 打包aar去除引用的jar檔案

weixin_34138377發表於2017-04-27

在寫libs module的時候,打包的arr的realese版本是包含libs目錄下的檔案,這時候你引入這個aar,可能會和你現有引入的jar檔案衝突,

在打包aar的時候可以設定不引入libs檔案,很簡單

看一下你的lib module的gradle檔案,裡面應該有下面這樣一段

dependencies {

compile fileTree(include: ['*.jar'],dir:'libs')

androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {

excludegroup:'com.android.support',module:'support-annotations'

})

compile'com.android.support:appcompat-v7:24.2.1'

testCompile'junit:junit:4.12'

}

要先編譯打包的時候不帶有libs,很簡單,刪除compile fileTree(include: ['*.jar'],dir:'libs') 這行,把libs module需要引用的jar 檔案用compile files 這種方式引入,修改後的dependencies 屬性如下

dependencies {

androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {

excludegroup:'com.android.support',module:'support-annotations'

})

compile'com.google.code.gson:gson:2.6.2'

testCompile'junit:junit:4.12'

compile files('libs/commons-lang-2.6.jar')

compile files('libs/simple-xml-2.7.jar')

compile files('libs/agnes_tracker-0.1.0.jar')

compile project(path:':okhttputills')

}

這樣打包aar的時候將不一併打包libs目錄

相關文章