Android多渠道打包方案

Android多渠道打包,由于传统打包速度比较慢,本篇主要 介绍一种新的打包方案,速度可提升百倍。

背景:

android studio支持多渠道打包方式,是通过gradle 的变种方式来进行的:

//build.gradle
manifestPlaceholders = [FFCHANNEL_ID_VALUE: channel]
//AndroidManifest.xml

这种方式是google推荐的方式,但这种方式对于几个渠道包是可以支持的, 当我们需要打上百个渠道包时,这种方案耗时很长,是项目开发不能忍受的。而目前我们项目需要进行加固后保障安全,发布市场的app需要进行加固。当发布app时候,我们需要在集成打包机器上进行打包,目前项目为11个渠道包,耗时一个多小时,时间已经属于不可容忍的,况且还未进行加固,目前加固11个包,需要半小时,广州银行80个渠道包,2G多,全部加固完成需要半天时间。这种情况下,我们需要考虑采用新的方案来解决打渠道包耗时费力的问题。

新方案

新方案是通过zip包注释的方案进行多渠道打包的,由开发提供一个生成包即可,使用该包进行加固,作为母包。通过开发提供的脚本,批量生成多渠道包,基本属于拷贝复制的节奏,由于目前apk为27M多,偏大,所以基本一个渠道包为1s,生成80个渠道包耗时80秒,亲测。
可以考虑以后由开发只提供母包,由运营发布市场的同事根据运营需求来自己执行脚本发布各市场渠道包,简单,方便,快捷,不受限制。

原理

使用APK注释字段保存渠道信息和MAGIC字节,通过脚本将取渠道信息写入apk注释字段中。 android使用的apk包的压缩方式是zip,与zip有相同的文件结构,在zip的Central directory file header中包含一个File comment区域,可以存放一些数据。File comment是zip文件如果可以正确的修改这个部分,就可以在不破坏压缩包、不用重新打包的的前提下快速的给apk文件写入自己想要的数据。 comment是在Central directory file header末尾储存的,可以将数据直接写在这里,下表是header末尾的结构
image
由于数据是不确定的,我们无法知道comment的长度,从表中可以看到zip定义comment的长度的位置在comment之前,所以无法从zip中直接获取comment的长度。这里我们需要自定义comment的长度,在自定义comment内容的后面添加一个区域储存comment的长度,结构如下图。 image

目前也已经和爱加密加固的同事进行了确认,爱加密的加固方式不会占用该zip注释,不会和该多渠道包方案冲突,也已经在项目中测试验证通过。

实现

写入 :写入可以使用java,也可以使用python,目前考虑到可以对外提供,使用python。
读取 :读取需要在Android代码中用java实现。
//定义魔法串作为结束符
MAGIC = '!ZXK!'
//写入

def write_market(path, market, output):
    '''
    write market info to apk file
    write_market(apk-file-path, market-name, output-path)
    '''
    path = os.path.abspath(path)
    output = unicode(output)
    if not os.path.exists(path):
        print('apk file',path,'not exists')
        return
    if read_market(path):
        print('apk file',path,'had market already')
        return
    if not output:
        output = os.path.dirname(path)
    if not os.path.exists(output):
        os.makedirs(output)
    name,ext = os.path.splitext(os.path.basename(path))
    # name,package,vname,vcode
    app = parse_apk(path)
    apk_name = '%s-%s-%s-%s%s' % (app['app_package'],
        market.decode('utf8'), app['version_name'], app['version_code'], ext)
    # apk_name = name + "-" + market + ext
    apk_file = os.path.join(output,apk_name)
    shutil.copy(path,apk_file)
    # print('apk file:',apk_file)
    index = os.stat(apk_file).st_size
    index -= ZIP_SHORT
    with open(apk_file,"r+b") as f:
        f.seek(index)
        # write comment length 
        f.write(struct.pack('

//读取

public static String readZipComment(File file) throws IOException {
            RandomAccessFile raf = null;
            try {
                raf = new RandomAccessFile(file, "r");
                long index = raf.length();
                byte[] buffer = new byte[MAGIC.length];
                index -= MAGIC.length;
                // read magic bytes
                raf.seek(index);
                raf.readFully(buffer);
                // if magic bytes matched
                if (isMagicMatched(buffer)) {
                    index -= SHORT_LENGTH;
                    raf.seek(index);
                    // read content length field
                    int length = readShort(raf);
                    if (length > 0) {
                        index -= length;
                        raf.seek(index);
                        // read content bytes
                        byte[] bytesComment = new byte[length];
                        raf.readFully(bytesComment);
                        return new String(bytesComment, UTF_8);
                    } else {
                        throw new IOException("zip comment content not found");
                    }
                } else {
                    throw new IOException("zip comment magic bytes not found");
                }
            } finally {
                if (raf != null) {
                    raf.close();
                }
            }
        }

使用

目前提供写入脚本到项目中,读取渠道号代码已经集成到java代码中。
使用如下:
格式是:python ngpacker.py [file] [market] [output]
eg:

python ngpacker.py app-release_signed.apk markets.txt apks

渠道配置文件如下:

1001#bdsj  
1002#azsc  
1003#91zs  
1004#wdj  
1005#txyyb
1006#xmyy
1007#360sj
1008#hwyy
1009#anzhisc
1010#ppzs
1011#lsd

你可能感兴趣的:(Android多渠道打包方案)