|
@@ -40,6 +40,14 @@ def pack(game, sdk, config):
|
|
|
if ret:
|
|
|
return ret
|
|
|
|
|
|
+ # 复制res资源
|
|
|
+ ret = copyRes(game, sdk, subChannel, config)
|
|
|
+ if ret:
|
|
|
+ return ret
|
|
|
+ # 复制app res资源
|
|
|
+ ret = copyAppRes(game, sdk, subChannel, config)
|
|
|
+ if ret:
|
|
|
+ return ret
|
|
|
# 更改包名
|
|
|
if 'packageName' in config and config['packageName'] != '':
|
|
|
ret = changePackageName(game, sdk, subChannel, config)
|