項目開發中,隨着業務的增加,經常須要在apk編譯階段對包代碼或是資源作必定的自定義修改,好比熱修復,插件生成,無埋點統計,渠道包生成等等。html
可是公司項目業務開發人員基本上都不多接觸到相關技術,這裏以學習的態度,實現一套用7zip壓縮apk資源文件的gradle插件。java
APK瘦身在行業內已經有不少成熟的開源技術體現方案,如美團Android App包瘦身優化實踐這篇博客中詳細的說明。 這裏咱們從資源壓縮入手,用7z工具,實現一套本身的資源壓縮gradle插件。android
通常簡單的邏輯能夠寫在build.gradle文件中,可是本着便於管理及重用,能夠把插件獨立爲項目。 獨立的gradle插件編譯後,咱們能夠發佈到本地maven庫,或是jcenter中心,供其餘項目引用。git
Gradle插件開發能夠用android studio,也能夠用IntelliJ。AS開發須要本身建立插件項目結構,而IntelliJ能夠自動生成項目結構,可是用起來一些操做不是很順手。github
以下圖,用IntelliJ New出來一個項目,按照引導,便可生成咱們的初始項目結構及gradle-wrapper。bash
這裏填寫插件 GroupId,ArtifactId,已經插件版本Version。若是不肯定,能夠先隨意寫個,隨後能夠在項目中更改。標準的項目結構以下:app
若是用as開發,須要手動建立如上結構。從項目中能夠看出支持groovy,和java的混合開發,固然從IntelliJ建立項目引導能夠看出同時也是支持kotlin的。 每種語言都有各自的語言特色,好比咱們開發gradle插件,在與項目build編譯交互的地方用groovy開發,業務的核心代碼用咱們擅長的語言(java)開發,這裏使用7zip的地方就是用java封裝實現的。maven
resources文件夾比較重要,這裏的文件標明瞭插件的入口,及插件的引用名字。若是導出maven庫找不到本身插件引用,能夠先檢查下這個文件結構是否正確。ide
apk-shrink.properties工具
implementation-class=win.canking.gradle.ShrinkPlugin
複製代碼
apply plugin ‘apk-shrink’
複製代碼
當build.gradle 解析 apply plugin 時,就會找到 win.canking.gradle.ShrinkPlugin, 開始執行**apply()**方法
1,發佈本地maven,build.gradle配置以下
apply plugin: 'groovy'
apply plugin: 'java'
apply plugin: 'maven'
group 'win.canking.gradle'
version '1.0.1'
archivesBaseName = 'apk-shrink'//ArtifactId默認是項目module name
compileGroovy {
sourceCompatibility = 1.7
targetCompatibility = 1.7
options.encoding = "UTF-8"
}
dependencies {
compile gradleApi()
compile localGroovy()
compile 'com.android.tools.build:gradle:2.1.0'
}
uploadArchives {
repositories.mavenDeployer {
//文件發佈到下面目錄
repository(url: uri('../../ChargeHelperPro/gradleplugin/'))
}
}
複製代碼
執行以下代碼,能夠生成本地的maven庫
gradlew -p {module name} clean build uploadArchives --info
複製代碼
2,不一樣JDK編譯問題,特別注意,須要配置sourceCompatibility
3, 引用找不到問題 先檢查導出目錄,是否生成了maven。目錄結構以下:
反編譯生成的jar包,查看打包是否正確。
一個apk文件本質上就是一個zip壓縮文件,咱們能夠用解壓縮工具解壓查看內部結構。
name | desp |
---|---|
res | 資源文件,該文件下資源都會映射到項目R文件中,生成引用ID |
assets | 靜態資源文件,訪問是須要用到 AssetManager |
lib | 第三包jar或者native so庫 |
META-INF | 簽名信息,CERT.RSA CERT.SF MANIFRST.MF |
AndroidManifest | 項目清單文件,包含四大組件,包信息,權限等 |
classes.dex | java的class文件經過dx工具生成的安卓執行文件 |
resources.arsc | 編譯後的二進制資源文件,包含代碼對資源的引用關係 |
aapt l -v xxx.apk
複製代碼
從圖中看出apk中有些資源文件存儲方式爲stored,是未經壓縮狀態,咱們能夠對apk再處理,經過高壓縮率的工具(7zip)壓縮文件,達到瘦身目的。
經過「which 7za「獲取PC上7zip工具目錄
ProcessBuilder pb = new ProcessBuilder(new String[]{"which", "7za"});
String sevenZipPath = "";
try {
Process process = pb.start();
InputStreamReader ir = new InputStreamReader(process.getInputStream());
LineNumberReader input = new LineNumberReader(ir);
String tmp;
while ((tmp = input.readLine()) != null) {
if (tmp.endsWith(File.separator + "7za")) {
sevenZipPath = tmp;
Log.a("Shrink", "7zip path:" + sevenZipPath);
}
}
process.waitFor();
process.destroy();
} catch (Exception e) {
Log.e("Error", "no shrink" + e.getMessage());
return;
}
複製代碼
定義要壓縮的文件類型:
public class CompressInfo {
public Set<String> compressFilesPattern;
private CompressInfo() {
this.compressFilesPattern = new HashSet<>();
}
public static CompressInfo init() {
CompressInfo info = new CompressInfo();
info.compressFilesPattern.add(".png");
info.compressFilesPattern.add(".jpg");
info.compressFilesPattern.add(".JPG");
info.compressFilesPattern.add(".jpeg");
info.compressFilesPattern.add(".gif");
info.compressFilesPattern.add(".arsc");
return info;
}
}
複製代碼
調用7za進行壓縮目標文件
private static void do7zip(String srcDirPath, String outZipPath, String sevenZipPath)
throws IOException, InterruptedException {
String srcFilesPath = new File(srcDirPath).getAbsolutePath() + File.separator + "*";
outZipPath = new File(outZipPath).getAbsolutePath();
ProcessBuilder pb = new ProcessBuilder(new String[]{sevenZipPath, "a", "-tzip", outZipPath, srcFilesPath, "-mx9"});
Process process = pb.start();
InputStreamReader ir = new InputStreamReader(process.getInputStream());
LineNumberReader input = new LineNumberReader(ir);
String line;
while ((line = input.readLine()) != null) {
Log.d(input.getLineNumber() + ":" + line);
}
process.waitFor();
process.destroy();
}
複製代碼
指定task來執行壓縮任務
@Override
void apply(Project project) {
Log.d("shrink apply")
if (project.getPlugins().hasPlugin(AppPlugin)) {
def config = project.extensions.create(SHRINK_CONFIG, ShrinkExtension)
project.afterEvaluate {
project.tasks.matching {
println it.name
it.name.startsWith('packageRelease')
} each {
t ->
t.doLast {
if (config.enable) {
Log.d("shrink start...")
GradleMrg.do7zipCompressApk(config.apkPath)
Log.d("shrink EDN")
}
}
}
}
}
}
複製代碼
注:此Demo依賴項目的編譯流程,須要在本身項目中build.gradle中配置相關壓縮參數:
shrinkConfig {
enable = true
apkPath = '/PATH/App-release.apk'//可經過代碼方法自動獲取
}
複製代碼
也能夠自定義一個單獨的task,不依賴編譯流程。
壓縮效果對比:
本案例源碼以提交到GitHub,歡迎交流學習及star。
歡迎轉載,請標明出處:常興E站 canking.win