1. 程式人生 > >Android自動化打包之如何快速生成渠道包

Android自動化打包之如何快速生成渠道包

如果渠道不是很多的情況下,我們一般使用gradle進行渠道打包。

但是有種情況就是一旦渠道有上百個的時候,gradle的打包速度將會變得很慢,今天看了一篇文章,來自美團技術團隊的分享,地址如下:

https://tech.meituan.com/mt-apk-packaging.html

在這裡,我主要是想講一下,這種快速生成渠道包的思路。

大家都知道,我們生成的apk,其實是二進位制流的檔案。如果有壓縮工具開啟,它的結構可以如下


其中,我們這裡可以利用的地方,就是meta-inf這個目錄,它是不參與打包,所以,我們只要在這個目錄下加入一個空檔案,這個空檔案的名稱就是我們定義的規則渠道名稱。

假設它的字首為channel_,那麼我們使用python指令碼可以在裡面生成這樣一個空檔案。

import zipfile
zipped = zipfile.ZipFile(your_apk, 'a', zipfile.ZIP_DEFLATED) 
empty_channel_file = "META-INF/channel_{channel}".format(channel=your_channel)
zipped.write(your_empty_file, empty_channel_file)

那麼,android下,通過以下的程式碼就可以讀取這個渠道。

        ApplicationInfo appinfo = context.getApplicationInfo();
        String sourceDir = appinfo.sourceDir;
        String ret = "";
        ZipFile zipfile = null;
        try {
            zipfile = new ZipFile(sourceDir);
            Enumeration<?> entries = zipfile.entries();
            while (entries.hasMoreElements()) {
                ZipEntry entry = ((ZipEntry) entries.nextElement());
                String entryName = entry.getName();
                if (entryName.startsWith("channel")) {
                    ret = entryName;
                    break;
                }
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (zipfile != null) {
                try {
                    zipfile.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }

        String[] split = ret.split("_");
        if (split != null && split.length >= 2) {
            return ret.substring(split[0].length() + 1);

        } else {
            return "";
        }
    }