为什么会用到fat-aar
需要把有个模块打包成aar,直接打包的话,模块中引用的jar、aar、第三方依赖库都不会打包进去。直接生成的aar缺少内部引用的以来,所以要用到fat-aar来把模块中用到的依赖也打包进去。
如何使用
1.首先在项目的gradle加入
classpath 'com.github.kezong:fat-aar:1.3.8'
2.在repositories加入
flatDir {
dirs 'libs'
}
3. 在需要打包aar的build.gradle中加入
apply plugin: 'com.kezong.fat-aar'
4.第三方库需要把依赖implementation改为embed,例如:
implementation('com.squareup.okhttp3:okhttp:4.11.0')
改为:
embed('com.squareup.okhttp3:okhttp:4.11.0')
- 本地的aar引入,例如:
implementation files("libs/xxx.aar")
改为:
embed(name: 'animplayer', ext: 'aar')
//需要加上这个
compileOnly fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
打出来的aarlib中存在多个架构,例如x86\x86_64
我们不需要这些so库的话可以过滤掉
在需要打包的模块build中加入要过滤的so
android{
//不需要把这些架构打进去
packagingOptions {
exclude 'lib/x86/*.so'
exclude 'lib/x86_64/*.so'
}
}
我在打包okhttp和retrofit的时候遇到的问题
我通过这种方式去把okhttp和retrofit打包打aar
embed('com.squareup.okhttp3:okhttp:4.11.0')
embed('com.squareup.okio:okio:3.2.0')
embed('com.squareup.retrofit2:retrofit:2.9.0')
embed('com.squareup.retrofit2:converter-gson:2.9.0')
打包过程中没遇到任何问题,但是在使用的时候却崩溃了。
通过排查定位发现是okhttp依赖了okio,retrofit依赖了google的gson
但是打包aar的时候并没有打包进去
我看fat-aar官网是有说明的:
如果你想将所有远程依赖在pom中声明的依赖项同时打入在最终产物里的话,你需要在build.gradle中将transitive值改为true,例如:
fataar {
transitive = true
}
官网链接可以自己看一下
我加了这个照样没有生效。
解决办法
只好自己把这两个以来手动添加,更改后的代码为:
//okhttp3 依赖了okio
embed('com.squareup.okhttp3:okhttp:4.11.0')
embed('com.squareup.okio:okio:3.2.0')
embed('com.squareup.okhttp3:logging-interceptor:4.11.0')
//retrofit 依赖了gson
embed('com.squareup.retrofit2:retrofit:2.9.0')
embed('com.squareup.retrofit2:converter-gson:2.9.0')
embed('com.google.code.gson:gson:2.8.5')
你遇到其他问题怎么处理?
我这里只是遇到了这个问题,如果你使用其他依赖有问题,可以看看是否依赖里的依赖没有打进去,可以查看一下aar里面的依赖库,然后跟自己项目依赖树做一下对比,看看有没有缺少库。文章来源:https://www.toymoban.com/news/detail-608599.html
欢迎评论,我可以在文章中加上有问题的库文章来源地址https://www.toymoban.com/news/detail-608599.html
到了这里,关于android使用fat-aar打包,本地aar和第三方依赖库以及遇到的问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!