- 通过productFlavors打包不同资源文件,以改变应用名称等
- 通过variant.outputs设置打包路径,移动apk到py批量打包的目录
productFlavors {
production {}
longname {}
}
buildTypes {
debug {
signingConfig signingConfigs.release
//minifyEnabled true
proguardFiles 'proguard-project.txt'
}
release {
signingConfig signingConfigs.release
minifyEnabled true
proguardFiles 'proguard-project.txt'
applicationVariants.all { variant ->
variant.outputs.each { output ->
if (output.outputFile != null && output.outputFile.name.endsWith('.apk')
&& 'release'.equals(variant.buildType.name)) {
def apkFile = new File(
output.outputFile.getParent()+"/makeapk",
"qichechaoren_v${variant.versionName}_${variant.productFlavors[0].name}.apk")
output.outputFile = apkFile
}
}
}
}
}
- 通过py脚本根据info里不同文件里的渠道号对应批量打包不同资源的apk
#!/usr/bin/python
# coding=utf-8
import zipfile
import shutil
import os
# 空文件 便于写入此空文件到apk包中作为channel文件
src_empty_file = 'info/czt.txt'
# 创建一个空文件(不存在则创建)
f = open(src_empty_file, 'w')
f.close()
# 获取当前目录中所有的apk源包
src_apks = []
# python3 : os.listdir()即可,这里使用兼容Python2的os.listdir('.')
for file in os.listdir('.'):
if os.path.isfile(file):
extension = os.path.splitext(file)[1][1:]
if extension in 'apk':
src_apks.append(file)
# 获取渠道列表
channel_name = '_production'
channel_long_name = '_longname'
channel_file = 'info/channel.txt'
f = open(channel_file)
lines = f.readlines()
f.close()
channel_file2 = 'info/longname.txt'
f2 = open(channel_file2)
lines_longname = f2.readlines()
f2.close()
for src_apk in src_apks:
# file name (with extension)
src_apk_file_name = os.path.basename(src_apk)
# 分割文件名与后缀
temp_list = os.path.splitext(src_apk_file_name)
# name without extension
src_apk_name = temp_list[0]
# 后缀名,包含. 例如: ".apk "
src_apk_extension = temp_list[1]
# 创建生成目录,与文件名相关
output_dir = 'output_' + src_apk_name + '/'
# 目录不存在则创建
if not os.path.exists(output_dir):
os.mkdir(output_dir)
if channel_name in src_apk_name:
# 遍历渠道号并创建对应渠道号的apk文件
for line in lines:
# 获取当前渠道号,因为从渠道文件中获得带有\n,所有strip一下
target_channel = line.strip()
# 拼接对应渠道号的apk
apkname = src_apk_name.split(channel_name)
target_apk = output_dir + apkname[0] + "_" + target_channel + src_apk_extension
# 拷贝建立新apk
shutil.copy(src_apk, target_apk)
# zip获取新建立的apk文件
zipped = zipfile.ZipFile(target_apk, 'a', zipfile.ZIP_DEFLATED)
# 初始化渠道信息
empty_channel_file = "META-INF/cztchannel_{channel}".format(channel = target_channel)
# 写入渠道信息
zipped.write(src_empty_file, empty_channel_file)
# 关闭zip流
zipped.close()
if channel_long_name in src_apk_name:
# 遍历渠道号并创建对应渠道号的apk文件
for line in lines_longname:
# 获取当前渠道号,因为从渠道文件中获得带有\n,所有strip一下
target_channel = line.strip()
# 拼接对应渠道号的apk
apkname = src_apk_name.split(channel_long_name)
target_apk = output_dir + apkname[0] + "_" + target_channel + src_apk_extension
# 拷贝建立新apk
shutil.copy(src_apk, target_apk)
# zip获取新建立的apk文件
zipped = zipfile.ZipFile(target_apk, 'a', zipfile.ZIP_DEFLATED)
# 初始化渠道信息
empty_channel_file = "META-INF/cztchannel_{channel}".format(channel=target_channel)
# 写入渠道信息
zipped.write(src_empty_file, empty_channel_file)
# 关闭zip流
zipped.close()
此为blog备份,原地址:http://blog.yzapp.cn/markapk.html
网友评论