Gradle外掛開發 APK瘦身資源自定義7z壓縮

常興E站發表於2017-12-12

專案開發中,隨著業務的增長,常常需要在apk編譯階段對包程式碼或是資源做一定的自定義修改,比如熱修復,外掛生成,無埋點統計,渠道包生成等等。

但是公司專案業務開發人員基本上都很少接觸到相關技術,這裡以學習的態度,實現一套用7zip壓縮apk資原始檔的gradle外掛。

APK瘦身實戰 資源自定義7z壓縮

APK瘦身在行業內已經有很多成熟的開源技術體現方案,如美團Android App包瘦身優化實踐這篇部落格中詳細的說明。 這裡我們從資源壓縮入手,用7z工具,實現一套自己的資源壓縮gradle外掛。

Gradle 外掛簡單介紹

一般簡單的邏輯可以寫在build.gradle檔案中,但是本著便於管理及重用,可以把外掛獨立為專案。 獨立的gradle外掛編譯後,我們可以釋出到本地maven庫,或是jcenter中心,供其他專案引用。

專案結構介紹

Gradle外掛開發可以用android studio,也可以用IntelliJ。AS開發需要自己建立外掛專案結構,而IntelliJ可以自動生成專案結構,但是用起來一些操作不是很順手。

如下圖,用IntelliJ New出來一個專案,按照引導,即可生成我們的初始專案結構及gradle-wrapper。

IntelliJ
這裡填寫外掛 GroupId,ArtifactId,已經外掛版本Version。如果不確定,可以先隨意寫個,隨後可以在專案中更改。

IntelliJ

標準的專案結構如下:

專案結構

如果用as開發,需要手動建立如上結構。從專案中可以看出支援groovy,和java的混合開發,當然從IntelliJ建立專案引導可以看出同時也是支援kotlin的。 每種語言都有各自的語言特點,比如我們開發gradle外掛,在與專案build編譯互動的地方用groovy開發,業務的核心程式碼用我們擅長的語言(java)開發,這裡使用7zip的地方就是用java封裝實現的。

專案結構

resources資料夾比較重要,這裡的檔案標明瞭外掛的入口,及外掛的引用名字。如果匯出maven庫找不到自己外掛引用,可以先檢查下這個檔案結構是否正確。

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。目錄結構如下:

maven

反編譯生成的jar包,檢視打包是否正確。

JD-gui

APK資源自定義壓縮

APK包結構

一個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
複製程式碼

stored

從圖中看出apk中有些資原始檔儲存方式為stored,是未經壓縮狀態,我們可以對apk再處理,通過高壓縮率的工具(7zip)壓縮檔案,達到瘦身目的。

獲取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,不依賴編譯流程。

壓縮效果對比:

after
before

本案例原始碼以提交到GitHub,歡迎交流學習及star。


歡迎轉載,請標明出處:常興E站 canking.win

相關文章