1. 程式人生 > >Android專案將module打包成aar檔案

Android專案將module打包成aar檔案

fat-aar.gradle檔案下載地址:
https://github.com/adwiv/android-fat-aar
2.修改build.gradle
在build.gradle中新增:apply from: 'fat-aar.gradle',
注意:這句話要寫在dependencies之上。
之後要將dependencies中,引用的module或者網路庫前的compile修改成embedded。參考如下程式碼:
apply from: 'fat-aar.gradle'

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.3.1'
    testCompile 'junit:junit:4.12'
    embedded 'com.github.barteksc:pdfium-android:1.7.0'
}
我的程式碼引用的是pdfium-android:1.7.0包的網路庫路徑。
做完如上兩步操作之後,就可以按照之前介紹的雙擊assemble,去module/build/outputs/aar路徑下,就可以找到生成的aar包了。
aar包的引用,可以參考我上一篇文章。