该插件提供了将library以及它依赖的library一起打包成一个完整aar的解决方案,支持AGP 3.0及以上。(目前测试的版本范围是AGP 3.0 - 4.1.1,Gradle 4.9 - 6.8)
添加以下代码到你工程根目录下的build.gradle
文件中:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.kezong:fat-aar:1.3.4'
}
}
添加以下代码到你的主library的build.gradle
中:
apply plugin: 'com.kezong.fat-aar'
embed
你所需要的工程, 用法类似implementation
代码所示:
dependencies {
implementation fileTree(dir: 'libs', include: '*.jar')
// java dependency
embed project(':lib-java')
// aar dependency
embed project(':lib-aar')
// aar dependency
embed project(':lib-aar2')
// local full aar dependency, just build in flavor1
flavor1Embed project(':lib-aar-local')
// local full aar dependency, just build in debug
debugEmbed (name:'lib-aar-local2', ext:'aar')
// remote jar dependency
embed 'com.google.guava:guava:20.0'
// remote aar dependency
embed 'com.facebook.fresco:fresco:1.11.0'
// don't want to embed in
implementation('androidx.appcompat:appcompat:1.2.0')
}
- 在你的工程目录下执行assemble指令,其中lib-main为你主library的工程名称,你可以根据不同的flavor以及不同的buildType来决定执行具体的assemble指令
# assemble all
./gradlew :lib-main:assemble
# assemble debug
./gradlew :lib-main:assembleDebug
# assemble flavor
./gradlew :lib-main:assembleFlavor1Debug
最终合并产物会覆盖原有aar,同时路径会打印在log信息中.
如果你想将本地所有相关的依赖项全部包含在最终产物中,你需要在你主library中对所有依赖都加上embed
关键字
比如,mainLib依赖lib1,lib1依赖lib2,如果你想将所有依赖都打入最终产物,你必须在mainLib的build.gradle
中对lib1以及lib2都加上embed
关键字
如果你想将所有远程依赖在pom中声明的依赖项同时打入在最终产物里的话,你需要在build.gradle
中将transitive值改为true,例如:
fataar {
/**
* If transitive is true, local jar module and remote library's dependencies will be embed.
* If transitive is false, just embed first level dependency
* Local aar project does not support transitive, always embed first level
* Default value is false
* @since 1.3.0
*/
transitive = true
}
如果你将transitive的值改成了true,并且想忽略pom文件中的某一个依赖项,你可以添加exclude
关键字,例如:
embed('com.facebook.fresco:fresco:1.11.0') {
// exclude any group or module
exclude(group:'com.facebook.soloader', module:'soloader')
// exclude all dependencies
transitive = false
}
更多使用方式可参考 example.
AAR是Android提供的一种官方文件形式; 该文件本身是一个Zip文件,并且包含Android里所有的元素; 可以参考 aar文件详解.
支持功能列表:
- 支持flavor配置
- AndroidManifest合并
- Classes合并
- Jar合并
- Res合并
- Assets合并
- Jni合并
- R.txt合并
- R.class合并
- DataBinding合并
- Proguard合并
- Kotlin module合并
Version | Gradle Plugin | Gradle |
---|---|---|
1.0.1 | 3.1.0 - 3.2.1 | 4.4 - 6.0 |
1.1.6 | 3.1.0 - 3.4.1 | 4.4 - 6.0 |
1.1.10 | 3.0.0 - 3.4.1 | 4.1 - 6.0 |
1.2.6 | 3.0.0 - 3.5.0 | 4.1 - 6.0 |
1.2.8 | 3.0.0 - 3.5.9 | 4.1 - 6.8 |
1.2.11 - 1.2.14 | 3.0.0 - 3.6.9 | 4.1 - 6.8 |
1.2.15 - 1.2.16 | 3.0.0 - 4.0.2 | 4.1 - 6.8 |
1.2.17 | 3.0.0 - 4.0.2 | 4.9 - 6.8 |
1.2.18+ | 3.0.0 - 4.1.0 | 4.9 - 6.8 |
1.3.+ | 3.0.0 - 4.1.0 | 4.9 - 6.8 |
1.3.4 | 3.0.0 - 4.1.0 | 4.9+ |
Gradle Plugin和所需求的Gradle版本官方文档
- 1.3.4
- 支持Gradle 6.8 #274
- 1.3.3
- 修复异常"Can not find task bundleDebugAar". #84
- 修复当工程解析失败时产生的异常.
- 当AndroidManifest合并时抛出异常.
- 1.3.1
- R.class合并采用Transform,解决大部分R class找不到的问题.
- 支持consumerProguardFiles合并
- 支持kotlin_module合并,支持top-level机制
- 支持flavor中missingDimensionStrategy
- 修复依赖的flavor产物更名后无法找到的问题
- 修复AGP 3.0 - 3.1 Jar包无法合并的问题
- 修复某些情况下AGP版本获取不到的问题
- 1.2.20
- 修复获取产物名时的空指针异常. #214
- r-classes.jar重命名,加上包名作为前缀.
- 1.2.19
- 1.2.18
- 适配gradle plugin 4.1.0 #201
- 1.2.17
- 1.2.16
- 1.2.15
- 1.2.12
- 1.2.11
- 修复在gradle plugin 3.6.0下编译variants会error的情况 #126
- 修复在gradle plugin 3.6.0下编译出来的aar,在编译apk时会出现资源符号对象找不到的问题
- 1.2.9
- 适配gradle plugin 3.6.1 #120
- 1.2.8
- 适配gradle6.0+版本 #97
- 1.2.7
- 1.2.6
- 1.2.5
- 修复任务名称重复导致编译错误的问题 #48
- 如果开启minifyEnabled,所有的jar包将合入classes.jar文件
- 1.2.4
- 1.2.3
- 1.1.11
- 1.1.10
- 1.1.8
- 1.1.7
- 修复直接publish至maven时,aar的R文件未合并的问题 #7
- 1.1.6
- 1.0.3
- 修复assets未合并的问题
- 1.0.1
- 支持gradle plugin 3.1.0 - 3.2.1
- 支持资源合并,R文件合并
-
Application无法直接依赖embed工程: application无法直接依赖你的embed工程,必须依赖你embed工程所编译生成的aar文件
- 为了调试方便,你可以在选择在打包aar时,在主library工程中使用
embed
,需要直接运行app时,采用implementation
或者api
- 为了调试方便,你可以在选择在打包aar时,在主library工程中使用
-
资源冲突: 如果library和module中含有同名的资源(比如
string/app_name
),编译将会报duplication resources
的相关错误,有两种方法可以解决这个问题:- 考虑将library以及module中的资源都加一个前缀来避免资源冲突;
- 在
gradle.properties
中添加android.disableResourceValidation=true
可以忽略资源冲突的编译错误,程序会采用第一个找到的同名资源作为实际资源.
-
关于混淆
- 如果
minifyEnabled
设置为true,编译时会根据proguard规则过滤工程中没有引用到的类,导致App集成时找不到对象,因为大多数AAR都是提供接口的SDK,建议大家仔细梳理proguard文件。
- 如果