package_utils.py 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135
  1. # 安卓游戏打包脚本
  2. # 1.用apktool解包
  3. # 2.复制res资源、assets资源、jniLib资源
  4. # 3.修改包名、app名、渠道文件
  5. # 4.添加app icon、合并AndroidManifest文件
  6. # 5.添加app启动图,修改AndroidManifest文件
  7. # 6.生成新的R文件
  8. # 7.将新的R文件编译,生成dex,再用baksmali生成smali,替换旧的R文件
  9. # 8.将jar资源打包成dex,再用baksmali生成smali,拷贝到smali目录下
  10. # 9.统计方法量,并分割dex(将smali文件拷贝到目录smali_classes2)
  11. # 10.用apktool回包
  12. # 11.重新签名
  13. import file_utils
  14. import xml_utils
  15. import smali_utils
  16. import config_utils
  17. import game_utils
  18. import os
  19. import os.path
  20. import json
  21. import sys
  22. import importlib
  23. import uuid
  24. ignoreLauncher = ['jm_ysdk', 'jm_yijie', 'jm_quick', 'jm_beiyu', 'jm_xq_jrtt']
  25. def pack(game, sdk, config):
  26. config['cache'] = uuid.uuid1()
  27. subChannel = config['subChannel']
  28. # 解包
  29. ret = decomplie(game, sdk, subChannel, config)
  30. if ret:
  31. return ret
  32. # 删除旧代码
  33. ret = removeOldCode(game, sdk, subChannel, config)
  34. if ret:
  35. return ret
  36. # 删除一些不支持的属性
  37. ret = removeNoSupportAttr(game, sdk, subChannel, config)
  38. if ret:
  39. return ret
  40. # 删除一些不支持的配置
  41. ret = fixUnSupportConfig(game, sdk, subChannel, config)
  42. if ret:
  43. return ret
  44. # 合并Drawable-v4目录
  45. ret = mergeDrawableRes(game, sdk, subChannel, config)
  46. if ret:
  47. return ret
  48. # 移除相同的资源
  49. ret = removeSameRes(game, sdk, subChannel, config)
  50. if ret:
  51. return ret
  52. # 复制res资源
  53. ret = copyRes(game, sdk, subChannel, config)
  54. if ret:
  55. return ret
  56. # 合并主文件
  57. ret = mergeManifestRes(game, sdk, subChannel, config)
  58. if ret:
  59. return ret
  60. # 替换占位符
  61. ret = changePlaceholders(game, sdk, subChannel, config)
  62. if ret:
  63. return ret
  64. # 添加meta-data
  65. ret = addMetaData(game, sdk, subChannel, config)
  66. if ret:
  67. return ret
  68. # 增加配置文件
  69. ret = addConfig(game, sdk, subChannel, config)
  70. if ret:
  71. return ret
  72. # 复制app res资源
  73. ret = copyAppRes(game, sdk, subChannel, config)
  74. if ret:
  75. return ret
  76. # 更改包名
  77. if 'packageName' in config and config['packageName'] != '':
  78. ret = changePackageName(game, sdk, subChannel, config)
  79. if ret:
  80. return ret
  81. # 更改app名
  82. if 'name' in config and config['name'] != '':
  83. ret = changeAppName(game, sdk, subChannel, config)
  84. if ret:
  85. return ret
  86. # 更改app icon
  87. if config['changeIcon']:
  88. ret = changeAppIcon(game, sdk, subChannel, config)
  89. if ret:
  90. return ret
  91. # 添加启动图操作
  92. if config['addLauncher']:
  93. ret = addLauncher(game, sdk, subChannel, config)
  94. if ret:
  95. return ret
  96. # 添加多图标
  97. #ret = addMoreIcon(game, sdk, subChannel, config)
  98. #if ret:
  99. # return ret
  100. # 打包lib依赖
  101. ret = packJar(game, sdk, subChannel, config)
  102. if ret:
  103. return ret
  104. # sdk脚本处理
  105. ret = doSDKPostScript(game, sdk, config)
  106. if ret:
  107. return ret
  108. # 乐变sdk的特殊处理
  109. ret = game_utils.sdkLebianChange(game, sdk, config)
  110. if ret:
  111. return ret
  112. # 游戏脚本处理
  113. ret = doGamePostScript(game, sdk, config)
  114. if ret:
  115. return ret
  116. # log sdk
  117. if 'logSdk' in config:
  118. for log in config['logSdk']:
  119. ret = addLogSdk(game, sdk, subChannel, config, log)
  120. if ret:
  121. return ret
  122. # 生成R文件
  123. ret = generateNewRFile(game, sdk, subChannel, config)
  124. if ret:
  125. return ret
  126. # 添加MultiDex支持
  127. if config['splitDex']:
  128. ret = splitDex(game, sdk, subChannel, config)
  129. if ret:
  130. return ret
  131. # 更改版本号
  132. ret = changeVersion(game, sdk, subChannel, config)
  133. if ret:
  134. return ret
  135. # 回编译
  136. ret = recomplie(game, sdk, subChannel, config)
  137. if ret:
  138. return ret
  139. # 对齐apk
  140. ret = alignApk(game, sdk, subChannel, config)
  141. if ret:
  142. return ret
  143. # 签名
  144. ret = apksignerApk(game, sdk, subChannel, config)
  145. if ret:
  146. return ret
  147. # 添加渠道信息
  148. ret = addChannel(game, sdk, subChannel, config)
  149. if ret:
  150. return ret
  151. # 清理产生的中间文件
  152. if config['clearCache']:
  153. clearTemp(game, sdk, subChannel, config)
  154. return 0
  155. def decomplie(game, sdk, subChannel, config):
  156. '''
  157. 解包
  158. '''
  159. apktoolPath = file_utils.getApkToolPath()
  160. gamePath = file_utils.getFullGameApk(game)
  161. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  162. if os.path.exists(decompliePath):
  163. print('delete decomplie folder...')
  164. file_utils.deleteFolder(decompliePath)
  165. print('decomplie apk...')
  166. return file_utils.execJarCmd(apktoolPath, 'd -f "%s" -o "%s"' % (gamePath, decompliePath))
  167. def removeOldCode(game, sdk, subChannel, config):
  168. '''
  169. 删除旧代码
  170. '''
  171. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  172. codePath = os.path.join(decompliePath, 'smali', 'com', 'jmhy', 'sdk')
  173. file_utils.deleteFolder(codePath)
  174. return 0
  175. def copyRes(game, sdk, subChannel, config):
  176. '''
  177. 复制res资源
  178. '''
  179. # 拷贝sdk资源
  180. print('copy res...')
  181. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  182. sdkPath = file_utils.getFullSDKPath(sdk)
  183. resPath = os.path.join(sdkPath, 'res')
  184. decomplieResPath = file_utils.getFullPath(decompliePath, 'res')
  185. for d in os.listdir(resPath):
  186. copyResWithType(resPath, decomplieResPath, d)
  187. # 拷贝assets
  188. print('copy assets...')
  189. assetsPath = file_utils.getFullPath(sdkPath, 'assets')
  190. decomplieAssetsPath = file_utils.getFullPath(decompliePath, 'assets')
  191. if os.path.exists(assetsPath):
  192. ret = file_utils.copyFileAllDir(assetsPath, decomplieAssetsPath)
  193. if ret:
  194. return ret
  195. # 拷贝jniLib
  196. print('copy jniLibs...')
  197. jniPath = file_utils.getFullPath(sdkPath, 'jniLibs')
  198. decomplieJniPath = file_utils.getFullPath(decompliePath, 'lib')
  199. abiFilters = []
  200. if os.path.exists(decomplieJniPath):
  201. for abi in os.listdir(decomplieJniPath):
  202. if abi == 'armeabi-v7a' or abi == 'armeabi':
  203. abiFilters.append(abi)
  204. else:
  205. abiFilters = ['armeabi-v7a']
  206. if os.path.exists(jniPath):
  207. ret = file_utils.copyFileAllDir(jniPath, decomplieJniPath, False, abiFilters)
  208. if ret:
  209. return ret
  210. return 0
  211. def mergeDrawableRes(game, sdk, subChannel, config):
  212. '''
  213. 合并Drawable-v4目录
  214. '''
  215. print('merge drawable path...')
  216. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  217. resPath = os.path.join(decompliePath, 'res')
  218. for path in os.listdir(resPath):
  219. if path.startswith('drawable') and path.endswith('-v4'):
  220. v4DrawablePath = os.path.join(resPath, path)
  221. drawablePath = os.path.join(resPath, path[:-3])
  222. if os.path.exists(drawablePath):
  223. ret = file_utils.copyFileAllDir(v4DrawablePath, drawablePath, True)
  224. if ret:
  225. return ret
  226. else:
  227. os.rename(v4DrawablePath, drawablePath)
  228. return 0
  229. def removeSameRes(game, sdk, subChannel, config):
  230. '''
  231. 移除相同的资源
  232. '''
  233. # 读取sdk的资源
  234. print('remove same res...')
  235. sdkPath = file_utils.getFullSDKPath(sdk)
  236. sdkResPath = os.path.join(sdkPath, 'res')
  237. resList = []
  238. for path in os.listdir(sdkResPath):
  239. if not path.startswith('values'):
  240. continue
  241. absPath = os.path.join(sdkResPath, path)
  242. for resFile in os.listdir(absPath):
  243. '''if not resFile.startswith('jm_'):
  244. continue'''
  245. resList = xml_utils.readAllRes(os.path.join(absPath, resFile), resList)
  246. if len(resList) == 0:
  247. print('no same res found')
  248. return 0
  249. # 移除相同的资源
  250. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  251. resPath = os.path.join(decompliePath, 'res')
  252. for path in os.listdir(resPath):
  253. if not path.startswith('values'):
  254. continue
  255. absPath = os.path.join(resPath, path)
  256. for resFile in os.listdir(absPath):
  257. xml_utils.removeSameRes(os.path.join(absPath, resFile), resList)
  258. return 0
  259. def mergeManifestRes(game, sdk, subChannel, config):
  260. '''
  261. 合并主文件
  262. '''
  263. print('merge AndroidManifest...')
  264. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  265. manifest = os.path.join(decompliePath, 'AndroidManifest.xml')
  266. sdkPath = file_utils.getFullSDKPath(sdk)
  267. libManifest = file_utils.getFullPath(sdkPath, 'manifest.xml')
  268. return xml_utils.mergeManifestRes(manifest, libManifest)
  269. def copyAppRes(game, sdk, subChannel, config):
  270. '''
  271. 拷贝app的资源,比如app icon、启动图等
  272. '''
  273. channelPath = file_utils.getSubChannelPath(game, sdk, subChannel)
  274. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  275. # assets
  276. print('copy assets...')
  277. assetsPath = file_utils.getFullPath(channelPath, 'assets')
  278. decomplieAssetsPath = file_utils.getFullPath(decompliePath, 'assets')
  279. if os.path.exists(assetsPath):
  280. ret = file_utils.copyFileAllDir(assetsPath, decomplieAssetsPath)
  281. if ret:
  282. return ret
  283. # icon
  284. print('copy icon...')
  285. ret = copyAppResWithType(decompliePath, channelPath, 'icon')
  286. if ret:
  287. return ret
  288. # 启动图
  289. print('copy splash...')
  290. ret = copyAppResWithType(decompliePath, channelPath, 'splash')
  291. if ret:
  292. return ret
  293. # 其他图片
  294. print('copy image...')
  295. ret = copyAppResWithType(decompliePath, channelPath, 'image')
  296. if ret:
  297. return ret
  298. return 0
  299. def copyAppResWithType(decompliePath, channelPath, typeName):
  300. decomplieResPath = os.path.join(decompliePath, 'res')
  301. iconPath = os.path.join(channelPath, typeName)
  302. if not os.path.exists(iconPath):
  303. print('dir "%s" not exists' % iconPath)
  304. return 0
  305. for d in os.listdir(iconPath):
  306. ret = copyResWithType(iconPath, decomplieResPath, d)
  307. if ret:
  308. return ret
  309. return 0
  310. def copyResWithType(resPath, decomplieResPath, typeName):
  311. # appt的打包目录会带-v4后缀
  312. resDir = os.path.join(resPath, typeName)
  313. target = os.path.join(decomplieResPath, typeName)
  314. targetV4 = os.path.join(decomplieResPath, typeName + '-v4')
  315. if not os.path.exists(target) and not os.path.exists(targetV4):
  316. os.makedirs(target)
  317. return file_utils.copyFileAllDir(resDir, target, False)
  318. elif not os.path.exists(target):
  319. return file_utils.copyFileAllDir(resDir, targetV4, False)
  320. else:
  321. return file_utils.copyFileAllDir(resDir, target, False)
  322. def removeNoSupportAttr(game, sdk, subChannel, config):
  323. '''
  324. 删除一些不支持的属性
  325. '''
  326. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  327. manifest = os.path.join(decompliePath, 'AndroidManifest.xml')
  328. xml_utils.removeRootAttr(manifest, 'compileSdkVersion')
  329. xml_utils.removeRootAttr(manifest, 'compileSdkVersionCodename')
  330. return 0
  331. def fixUnSupportConfig(game, sdk, subChannel, config):
  332. '''
  333. 删除一些不支持的配置
  334. '''
  335. # 检查minSdkVersion
  336. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  337. yml = os.path.join(decompliePath, 'apktool.yml')
  338. minSdkVersion = 15
  339. file_utils.changeMinSdkVersion(yml, minSdkVersion)
  340. resPath = os.path.join(decompliePath, 'res')
  341. tag = '-v'
  342. for res in os.listdir(resPath):
  343. print('res = ' + res)
  344. if res.startswith('values') and tag in res:
  345. start = res.index(tag)
  346. version = res[start+len(tag):]
  347. if not version.isdigit():
  348. continue
  349. version = int(version)
  350. print('version = %d' % version)
  351. if version < minSdkVersion:
  352. unSopportPath = os.path.join(resPath, res)
  353. print('unSopportPath = ' + unSopportPath)
  354. file_utils.deleteFolder(unSopportPath)
  355. print('deleteFolder = ' + unSopportPath)
  356. return 0
  357. def changePackageName(game, sdk, subChannel, config):
  358. '''
  359. 更改包名
  360. '''
  361. # 全局替换AndroidManifest里面的包名
  362. newPackageName = config['packageName']
  363. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  364. manifest = os.path.join(decompliePath, 'AndroidManifest.xml')
  365. packageName = xml_utils.getPackageName(manifest)
  366. xml_utils.changePackageName(manifest, newPackageName)
  367. print('change package name %s --> %s' % (packageName, newPackageName))
  368. return 0
  369. def changeAppName(game, sdk, subChannel, config):
  370. '''
  371. 更改app名
  372. '''
  373. # 生成string.xml文件
  374. name = config['name']
  375. resName = 'common_sdk_name'
  376. if 'outName' in config:
  377. resName = resName + '_' + config['outName']
  378. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  379. stringFile = os.path.join(decompliePath, 'res', 'values', 'sdk_strings.xml')
  380. content = '<?xml version="1.0" encoding="utf-8"?><resources><string name="%s">%s</string></resources>' % (resName, name)
  381. file_utils.createFile(stringFile, content)
  382. # 修改主文件的app名的值
  383. manifest = os.path.join(decompliePath, 'AndroidManifest.xml')
  384. xml_utils.changeAppName(manifest, '@string/%s' % resName)
  385. print('change app name %s' % name)
  386. return 0
  387. def changeAppIcon(game, sdk, subChannel, config):
  388. '''
  389. 更改app icon
  390. '''
  391. print('change app icon...')
  392. resName = 'common_sdk_icon'
  393. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  394. manifest = os.path.join(decompliePath, 'AndroidManifest.xml')
  395. xml_utils.changeAppIcon(manifest, '@mipmap/%s' % resName)
  396. return 0
  397. def addMetaData(game, sdk, subChannel, config):
  398. '''
  399. 添加meta-data
  400. '''
  401. if 'metaData' not in config:
  402. return 0
  403. print('add meta-data...')
  404. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  405. manifest = os.path.join(decompliePath, 'AndroidManifest.xml')
  406. xml_utils.addMetaData(manifest, config['metaData'])
  407. return 0
  408. def addConfig(game, sdk, subChannel, config):
  409. '''
  410. 添加config.json
  411. '''
  412. if 'configData' not in config:
  413. return 0
  414. print('add config.json...')
  415. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  416. configJson = os.path.join(decompliePath, 'assets', 'jmhy_config.json')
  417. jsonText = json.dumps(config['configData'], ensure_ascii=False)
  418. file_utils.createFile(configJson, jsonText)
  419. return 0
  420. def changePlaceholders(game, sdk, subChannel, config):
  421. '''
  422. 处理掉占位符
  423. '''
  424. if 'placeholders' not in config:
  425. return 0
  426. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  427. manifest = os.path.join(decompliePath, 'AndroidManifest.xml')
  428. placeholders = config['placeholders']
  429. for placeholder in placeholders:
  430. oldText = '${%s}' % placeholder
  431. newText = placeholders[placeholder]
  432. print('change placeholder %s -> %s' % (oldText, newText))
  433. file_utils.replaceContent(manifest, oldText, newText)
  434. return 0
  435. def addLauncher(game, sdk, subChannel, config):
  436. '''
  437. 添加启动图
  438. '''
  439. # ysdk的特殊处理
  440. if sdk in ignoreLauncher:
  441. return 0
  442. channelPath = file_utils.getSubChannelPath(game, sdk, subChannel)
  443. splashPath = os.path.join(channelPath, 'splash')
  444. if len(os.listdir(splashPath)) == 0:
  445. print('dir splash is empty')
  446. return 0
  447. print('add launcher...')
  448. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  449. manifest = os.path.join(decompliePath, 'AndroidManifest.xml')
  450. activity = xml_utils.getLauncherActivityName(manifest)
  451. if activity == 'com.jmhy.sdk.template.LauncherActivity':
  452. print('add launcher already exist...')
  453. return 1
  454. # 添加关联资源
  455. internalPath = file_utils.getFullInternalPath()
  456. ret = copyAppResWithType(decompliePath, internalPath, 'launcher_res')
  457. if ret:
  458. return ret
  459. # 拷贝代码
  460. print('copy launcher code...')
  461. codePath = os.path.join(internalPath, 'launcher_code', 'smali')
  462. smaliPath = file_utils.getFullPath(decompliePath, 'smali')
  463. ret = file_utils.copyFileAllDir(codePath, smaliPath)
  464. if ret:
  465. return ret
  466. # 修改主文件信息
  467. print('change launcher config...')
  468. orientation = xml_utils.getScreenOrientation(manifest)
  469. activity = xml_utils.removeLauncherActivity(manifest)
  470. xml_utils.addLauncherActivity(manifest, orientation, 'com.jmhy.sdk.template.LauncherActivity')
  471. # 修改跳转的
  472. launcherActivity = os.path.join(decompliePath, 'smali', 'com', 'jmhy', 'sdk', 'template', 'LauncherActivity.smali')
  473. file_utils.replaceContent(launcherActivity, '{class}', activity)
  474. print('change launcher %s to %s' % (activity, 'com.jmhy.sdk.template.LauncherActivity'))
  475. # config['oldLauncher'] = activity
  476. if 'launcherTime' in config:
  477. timeHex = formatHex(config['launcherTime'])
  478. file_utils.replaceContent(launcherActivity, '0x0BB8', timeHex)
  479. return 0
  480. def addMoreIcon(game, sdk, subChannel, config):
  481. '''
  482. 添加多个图标
  483. '''
  484. print('add more icon support...')
  485. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  486. icon = '@mipmap/common_sdk_icon'
  487. if not config['changeIcon']:
  488. manifest = os.path.join(decompliePath, 'AndroidManifest.xml')
  489. icon = xml_utils.getApplicationAttr(manifest, 'icon')
  490. switchIcon = icon
  491. if config['switchIcon']:
  492. switchIcon = '@mipmap/common_sdk_icon2'
  493. manifest = os.path.join(decompliePath, 'AndroidManifest.xml')
  494. return xml_utils.addMoreIcon(manifest, icon, switchIcon)
  495. def formatHex(millisecond):
  496. '''
  497. 将毫秒转为16进制,4位格式
  498. '''
  499. timeHex = str(hex(millisecond)).upper()
  500. timeHex = timeHex[2:]
  501. formatHex = ''
  502. if len(timeHex) == 3:
  503. formatHex = '0x0' + timeHex
  504. elif len(timeHex) == 4:
  505. formatHex = '0x' + timeHex
  506. else:
  507. formatHex = '0x0BB8'
  508. return formatHex
  509. def doSDKPostScript(game, sdk, config):
  510. '''
  511. 执行sdk相关特殊处理脚本
  512. '''
  513. sdkPath = file_utils.getFullSDKPath(sdk)
  514. scriptPath = os.path.join(sdkPath, 'script')
  515. targetScript = os.path.join(scriptPath, 'sdk_script.py')
  516. if not os.path.exists(targetScript):
  517. print('sdk_script no exists')
  518. return 0
  519. print('doSDKPostScript...')
  520. sys.path.append(scriptPath)
  521. module = importlib.import_module('sdk_script')
  522. ret = module.execute(game, sdk, config)
  523. sys.path.remove(scriptPath)
  524. return ret
  525. def doGamePostScript(game, sdk, config):
  526. '''
  527. 执行游戏相关特殊处理脚本
  528. '''
  529. channelPath = file_utils.getFullGamePath(game)
  530. scriptPath = os.path.join(channelPath, 'script')
  531. targetScript = os.path.join(scriptPath, 'game_script.py')
  532. if not os.path.exists(targetScript):
  533. print('game_script no exists')
  534. return 0
  535. print('doGamePostScript...')
  536. sys.path.append(scriptPath)
  537. module = importlib.import_module('game_script')
  538. ret = module.execute(game, sdk, config)
  539. sys.path.remove(scriptPath)
  540. return ret
  541. def addLogSdk(game, sdk, subChannel, config, logSdk):
  542. # 拷贝jniLibs
  543. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  544. sdkPath = file_utils.getFullLogSDKPath(logSdk)
  545. print('copy log jniLibs...')
  546. jniPath = file_utils.getFullPath(sdkPath, 'jniLibs')
  547. decomplieJniPath = file_utils.getFullPath(decompliePath, 'lib')
  548. abiFilters = []
  549. if os.path.exists(decomplieJniPath):
  550. for abi in os.listdir(decomplieJniPath):
  551. if abi == 'armeabi-v7a' or abi == 'armeabi':
  552. abiFilters.append(abi)
  553. else:
  554. abiFilters = ['armeabi-v7a']
  555. if os.path.exists(jniPath):
  556. ret = file_utils.copyFileAllDir(jniPath, decomplieJniPath, False, abiFilters)
  557. if ret:
  558. return ret
  559. print('merge log AndroidManifest...')
  560. libManifest = file_utils.getFullPath(sdkPath, 'manifest.xml')
  561. if os.path.exists(libManifest):
  562. manifest = os.path.join(decompliePath, 'AndroidManifest.xml')
  563. ret = xml_utils.mergeManifestRes(manifest, libManifest)
  564. if ret:
  565. return ret
  566. return packLogJar(game, sdk, subChannel, config, logSdk)
  567. def generateNewRFile(game, sdk, subChannel, config):
  568. '''
  569. 生成新的R文件
  570. '''
  571. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  572. aapt = file_utils.getAAPTPath()
  573. androidPlatforms = file_utils.getAndroidCompileToolPath()
  574. manifest = os.path.join(decompliePath, 'AndroidManifest.xml')
  575. decomplieResPath = file_utils.getFullPath(decompliePath, 'res')
  576. compliePath = file_utils.getFullPath(decompliePath, 'gen')
  577. if not os.path.exists(compliePath):
  578. os.makedirs(compliePath)
  579. ret = file_utils.getExecPermission(aapt)
  580. if ret:
  581. return ret
  582. # 生成R文件
  583. print('create R.java ...')
  584. createRCmd = '"%s" p -f -m -J "%s" -S "%s" -I "%s" -M "%s"' % (aapt, compliePath, decomplieResPath, androidPlatforms, manifest)
  585. ret = file_utils.execFormatCmd(createRCmd)
  586. if ret:
  587. return ret
  588. # 编译R文件
  589. print('complie R.java ...')
  590. packageName = xml_utils.getPackageName(manifest)
  591. packagePath = file_utils.getPackagePath(compliePath, packageName)
  592. RSourceFile = os.path.join(packagePath, 'R.java')
  593. complieRCmd = 'javac -source 1.7 -target 1.7 -encoding UTF-8 "%s"' % RSourceFile
  594. ret = file_utils.execFormatCmd(complieRCmd)
  595. if ret:
  596. return ret
  597. # 生成dex
  598. print('dex R.class ...')
  599. dx = file_utils.getDxPath()
  600. outDex = os.path.join(compliePath, 'classes.dex')
  601. ret = file_utils.execJarCmd(dx, '--dex --output="%s" "%s"' % (outDex, compliePath))
  602. if ret:
  603. return ret
  604. # 反向dex生成smali
  605. # 存放在out目录
  606. print('baksmali classes.dex ...')
  607. baksmaliPath = file_utils.getBaksmaliPath()
  608. outPath = file_utils.getFullPath(decompliePath, 'out')
  609. ret = file_utils.execJarCmd(baksmaliPath, '-o "%s" "%s"' % (outPath, outDex))
  610. if ret:
  611. return ret
  612. # 将生成的文件拷贝到目标目录
  613. print('copy R.smali ...')
  614. smaliPath = file_utils.getFullPath(decompliePath, 'smali')
  615. file_utils.copyFileAllDir(outPath, smaliPath)
  616. return 0
  617. def packJar(game, sdk, subChannel, config):
  618. '''
  619. 打包所有的jar
  620. '''
  621. splitDex = config['splitDex']
  622. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  623. outPath = file_utils.getFullPath(decompliePath, 'gen')
  624. dx = file_utils.getDxPath()
  625. if not os.path.exists(outPath):
  626. os.makedirs(outPath)
  627. # --no-warning
  628. dexCmd = '--dex --multi-dex --no-warning --output="%s"' % outPath
  629. # 找到所有lib依赖
  630. sdkPath = file_utils.getFullSDKPath(sdk)
  631. libs = os.path.join(sdkPath, 'libs')
  632. libConfig = os.path.join(libs, 'config.json')
  633. # 存在配置文件
  634. if os.path.exists(libConfig):
  635. jsonText = file_utils.readFile(libConfig)
  636. libConf = json.loads(jsonText)
  637. if 'libConfig' in config and config['libConfig'] in libConf:
  638. conf = config['libConfig']
  639. libList = libConf[conf]
  640. for jar in libList:
  641. dexCmd += ' ' + os.path.join(libs, jar)
  642. else:
  643. for jar in os.listdir(libs):
  644. if not jar.endswith('.jar'):
  645. continue
  646. dexCmd += ' ' + os.path.join(libs, jar)
  647. else:
  648. for jar in os.listdir(libs):
  649. if not jar.endswith('.jar'):
  650. continue
  651. dexCmd += ' ' + os.path.join(libs, jar)
  652. # multidex.jar
  653. if splitDex:
  654. dexCmd += ' ' + file_utils.getMultiDexPath()
  655. # sdk实现类
  656. print('packageing all jar ...')
  657. dexCmd += ' ' + os.path.join(sdkPath, '%s.jar' % sdk)
  658. ret = file_utils.execJarCmd(dx, dexCmd)
  659. if ret:
  660. return ret
  661. # 反向dex生成smali
  662. # 存放在out目录
  663. print('baksmali classes.dex ...')
  664. outDex = os.path.join(outPath, 'classes.dex')
  665. baksmaliPath = file_utils.getBaksmaliPath()
  666. outPath = file_utils.getFullPath(decompliePath, 'out')
  667. ret = file_utils.execJarCmd(baksmaliPath, '-o "%s" "%s"' % (outPath, outDex))
  668. if ret:
  669. return ret
  670. # 将生成的文件拷贝到目标目录
  671. print('copy all smali ...')
  672. smaliPath = file_utils.getFullPath(decompliePath, 'smali')
  673. ret = file_utils.copyFileAllDir(outPath, smaliPath, True)
  674. if ret:
  675. return ret
  676. return 0
  677. def packLogJar(game, sdk, subChannel, config, logSdk):
  678. '''
  679. 打包所有的jar
  680. '''
  681. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  682. outPath = file_utils.getFullPath(decompliePath, 'gen')
  683. dx = file_utils.getDxPath()
  684. if not os.path.exists(outPath):
  685. os.makedirs(outPath)
  686. # --no-warning
  687. dexCmd = '--dex --multi-dex --no-warning --output="%s"' % outPath
  688. # 找到所有lib依赖
  689. sdkPath = file_utils.getFullLogSDKPath(logSdk)
  690. libs = os.path.join(sdkPath, 'libs')
  691. for jar in os.listdir(libs):
  692. if not jar.endswith('.jar'):
  693. continue
  694. dexCmd += ' ' + os.path.join(libs, jar)
  695. # sdk实现类
  696. print('packageing all log jar ...')
  697. dexCmd += ' ' + os.path.join(sdkPath, '%s.jar' % logSdk)
  698. ret = file_utils.execJarCmd(dx, dexCmd)
  699. if ret:
  700. return ret
  701. # 反向dex生成smali
  702. # 存放在out目录
  703. print('baksmali classes.dex ...')
  704. outDex = os.path.join(outPath, 'classes.dex')
  705. baksmaliPath = file_utils.getBaksmaliPath()
  706. outPath = file_utils.getFullPath(decompliePath, 'out')
  707. ret = file_utils.execJarCmd(baksmaliPath, '-o "%s" "%s"' % (outPath, outDex))
  708. if ret:
  709. return ret
  710. # 将生成的文件拷贝到目标目录
  711. print('copy all log smali ...')
  712. smaliPath = file_utils.getFullPath(decompliePath, 'smali')
  713. ret = file_utils.copyFileAllDir(outPath, smaliPath, True)
  714. if ret:
  715. return ret
  716. return 0
  717. def splitDex(game, sdk, subChannel, config):
  718. '''
  719. 分割dex
  720. '''
  721. # 判断是否已经存在application
  722. # 存在,则往原application添加内容
  723. # 不存在,则拷贝一个默认的android.support.multidex.MultiDexApplication
  724. print('add MultiDex support...')
  725. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  726. manifest = os.path.join(decompliePath, 'AndroidManifest.xml')
  727. application = xml_utils.getApplicationAttr(manifest, 'name')
  728. if application is None:
  729. ret = xml_utils.changeApplicationAttr(manifest, 'name', 'android.support.multidex.MultiDexApplication')
  730. if ret:
  731. return ret
  732. else:
  733. smaliPath = os.path.join(decompliePath, 'smali')
  734. applicationFile = file_utils.getPackagePath(smaliPath, application)
  735. applicationFile += '.smali'
  736. ret = changeApplicationDex(applicationFile)
  737. if ret:
  738. return ret
  739. return splitSmali(game, sdk, subChannel, config, application)
  740. def changeApplicationDex(file):
  741. '''
  742. 修改application的smali文件,增加MultiDex操作
  743. '''
  744. index = file_utils.getApplicationSmaliIndex(file)
  745. file_utils.insertApplicationSmali(file, index)
  746. return 0
  747. def splitSmali(game, sdk, subChannel, config, application):
  748. '''
  749. 如果函数上限超过限制,自动拆分smali,以便生成多个dex文件
  750. '''
  751. print('splitSmali...')
  752. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  753. smaliPath = os.path.join(decompliePath, 'smali')
  754. appPackage = None
  755. if application:
  756. appPackage = application[:application.rfind('.')]
  757. appPackage = appPackage.replace('.', '/')
  758. allFiles = []
  759. allFiles = file_utils.list_files(smaliPath, allFiles)
  760. #print('file count is %d' % len(allFiles))
  761. #maxFuncNum = 65535
  762. # 留一点空间,防止计算误差
  763. maxFuncNum = 64000
  764. currFucNum = 0
  765. totalFucNum = 0
  766. currDexIndex = 1
  767. allRefs = []
  768. #保证Application等类在第一个classex.dex文件中
  769. for f in allFiles:
  770. f = f.replace('\\', '/')
  771. if (appPackage and appPackage in f) or '/android/support/multidex' in f:
  772. currFucNum += smali_utils.get_smali_method_count(f, allRefs)
  773. totalFucNum = currFucNum
  774. for f in allFiles:
  775. f = f.replace('\\', '/')
  776. if not f.endswith('.smali'):
  777. continue
  778. if (appPackage and appPackage in f) or '/android/support/multidex' in f:
  779. continue
  780. thisFucNum = smali_utils.get_smali_method_count(f, allRefs)
  781. totalFucNum += thisFucNum
  782. #print('%d # %d ==> %s' % (thisFucNum, currDexIndex, f))
  783. #print('totalFucNum is %d' % totalFucNum)
  784. if currFucNum + thisFucNum >= maxFuncNum:
  785. currFucNum = thisFucNum
  786. currDexIndex += 1
  787. newDexPath = os.path.join(decompliePath, 'smali_classes%d' % currDexIndex)
  788. os.makedirs(newDexPath)
  789. else:
  790. currFucNum += thisFucNum
  791. if currDexIndex > 1:
  792. newDexPath = os.path.join(decompliePath, 'smali_classes%d' % currDexIndex)
  793. targetFile = newDexPath + f[len(smaliPath):]
  794. file_utils.copyFile(f, targetFile, True)
  795. return 0
  796. def changeVersion(game, sdk, subChannel, config):
  797. '''
  798. 更改版本号
  799. '''
  800. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  801. yml = os.path.join(decompliePath, 'apktool.yml')
  802. versionCode = None
  803. versionName = None
  804. targetSdkVersion = None
  805. if 'versionCode' in config:
  806. versionCode = config['versionCode']
  807. if 'versionName' in config:
  808. versionName = config['versionName']
  809. if 'targetSdkVersion' in config:
  810. targetSdkVersion = config['targetSdkVersion']
  811. print('changeVersion versionCode=%s,versionName=%s,targetSdkVersion=%s' % (versionCode, versionName, targetSdkVersion))
  812. return file_utils.changeVersion(yml, versionCode, versionName, targetSdkVersion)
  813. def recomplie(game, sdk, subChannel, config):
  814. '''
  815. 回编译
  816. '''
  817. print('recomplie apk...')
  818. apktoolPath = file_utils.getApkToolPath()
  819. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  820. outApk = file_utils.getOutApkPath(game, sdk, subChannel, config['cache'])
  821. return file_utils.execJarCmd(apktoolPath, 'b -f "%s" -o "%s"' % (decompliePath, outApk))
  822. def alignApk(game, sdk, subChannel, config):
  823. '''
  824. 对齐apk
  825. '''
  826. print('align apk...')
  827. outApk = file_utils.getOutApkPath(game, sdk, subChannel, config['cache'])
  828. alignApk = file_utils.getAlignApkPath(game, sdk, subChannel, config['cache'])
  829. alignapkTool = file_utils.getAlignPath()
  830. if os.path.exists(alignApk):
  831. os.remove(alignApk)
  832. ret = file_utils.getExecPermission(alignapkTool)
  833. if ret:
  834. return ret
  835. # zipalign.exe -v -p 4 input.apk output.apk
  836. return file_utils.execFormatCmd('"%s" -f -p 4 "%s" "%s"' % (alignapkTool, outApk, alignApk))
  837. def apksignerApk(game, sdk, subChannel, config):
  838. '''
  839. 签名apk
  840. '''
  841. print('sign apk...')
  842. path = os.path.join(file_utils.getCurrentPath(), 'keystore', 'key.json')
  843. jsonText = file_utils.readFile(path)
  844. signConfig = json.loads(jsonText)
  845. keystore = {}
  846. if game in signConfig:
  847. if sdk in signConfig[game] and subChannel in signConfig[game][sdk]:
  848. keystore = signConfig[game][sdk][subChannel]
  849. else:
  850. keystore = signConfig['default']
  851. else:
  852. keystore = signConfig['default']
  853. print('storeFile is "%s"' % keystore['storeFile'])
  854. apksigner = file_utils.getApksignerPath()
  855. alignApk = file_utils.getAlignApkPath(game, sdk, subChannel, config['cache'])
  856. signedApk = file_utils.getSignApkPath(game, sdk, subChannel, config['cache'])
  857. storeFile = os.path.join(file_utils.getCurrentPath(), 'keystore', keystore['storeFile'])
  858. if 'outName' in config and 'outPath' in config:
  859. if not os.path.exists(config['outPath']):
  860. os.makedirs(config['outPath'])
  861. signedApk = os.path.join(config['outPath'], config['outName'] + '.apk')
  862. elif 'outName' in config:
  863. signedApk = file_utils.getRenameApkPath(game, sdk, config['cache'], config['outName'])
  864. # java -jar apksigner.jar sign --ks key.jks --ks-key-alias releasekey --ks-pass pass:pp123456 --key-pass pass:pp123456 --out output.apk input.apk
  865. v2disable = ''
  866. if 'v2disable' in config and config['v2disable']:
  867. v2disable = ' --v2-signing-enabled=false'
  868. return file_utils.execJarCmd(apksigner, 'sign%s --ks "%s" --ks-key-alias %s --ks-pass pass:%s --key-pass pass:%s --out "%s" "%s"' % (v2disable, storeFile, keystore['keyAlias'], keystore['storePassword'], keystore['keyPassword'], signedApk, alignApk))
  869. def addChannel(game, sdk, subChannel, config):
  870. '''
  871. 添加渠道信息
  872. '''
  873. if 'v2disable' in config and config['v2disable']:
  874. return 0
  875. walle = file_utils.getWallePath()
  876. signedApk = file_utils.getSignApkPath(game, sdk, subChannel, config['cache'])
  877. if 'outName' in config and 'outPath' in config:
  878. signedApk = os.path.join(config['outPath'], config['outName'] + '.apk')
  879. elif 'outName' in config:
  880. signedApk = file_utils.getRenameApkPath(game, sdk, config['cache'], config['outName'])
  881. properties = config['properties']
  882. appid = ''
  883. appkey = ''
  884. host = ''
  885. if 'appid' in properties:
  886. appid = properties['appid']
  887. if 'appkey' in properties:
  888. appkey = properties['appkey']
  889. if 'host' in properties:
  890. host = properties['host']
  891. return file_utils.execJarCmd(walle, 'put -e version=%s,agent=%s,appid=%s,appkey=%s,host=%s "%s" "%s"' % (config_utils.getDate(), properties['agent'], appid, appkey, host, signedApk, signedApk))
  892. def clearTemp(game, sdk, subChannel, config):
  893. '''
  894. 清空中间产生的文件
  895. '''
  896. print('clear temp...')
  897. alignApk = file_utils.getAlignApkPath(game, sdk, subChannel, config['cache'])
  898. outApk = file_utils.getOutApkPath(game, sdk, subChannel, config['cache'])
  899. if os.path.exists(alignApk):
  900. os.remove(alignApk)
  901. if os.path.exists(outApk):
  902. os.remove(outApk)
  903. decompliePath = file_utils.getDecompliePath(game, sdk, subChannel, config['cache'])
  904. file_utils.deleteFolder(decompliePath)
  905. print('clear temp end')
  906. def packConsoleInput():
  907. '''
  908. 控制台打包
  909. '''
  910. if len(sys.argv) < 3:
  911. print('argument is missing')
  912. return 1
  913. # 校验参数
  914. game = sys.argv[1]
  915. sdk = sys.argv[2]
  916. # 可选参数,没有则默认打全部渠道
  917. subChannel = None
  918. if len(sys.argv) > 3:
  919. subChannel = sys.argv[3]
  920. return packConsole(game, sdk, subChannel)
  921. def packConsole(game, sdk, subChannel):
  922. '''
  923. 控制台打包
  924. '''
  925. if not os.path.exists(file_utils.getFullGameApk(game)):
  926. print('game "%s" not exists' % game)
  927. return 1
  928. if not os.path.exists(file_utils.getFullSDKPath(sdk)):
  929. print('sdk "%s" not exists' % sdk)
  930. return 1
  931. # 读取配置
  932. channelPath = file_utils.getChannelPath(game, sdk)
  933. configPath = os.path.join(channelPath, 'config.json')
  934. if not os.path.exists(configPath):
  935. print('%s not exists' % configPath)
  936. return 1
  937. jsonText = file_utils.readFile(configPath)
  938. config = json.loads(jsonText)
  939. # 检查参数
  940. if not config_utils.checkConfig(config):
  941. return 1
  942. # 处理参数
  943. config_utils.replaceArgs(config)
  944. successCount = 0
  945. failureCount = 0
  946. if type(config) == dict:
  947. if subChannel is None or config['subChannel'] == subChannel:
  948. ret = pack(game, sdk, config)
  949. if ret:
  950. failureCount += 1
  951. else:
  952. successCount += 1
  953. else:
  954. print('subChannel "%s" no found' % subChannel)
  955. return 1
  956. elif type(config) == list:
  957. found = False
  958. for itemConfig in config:
  959. if subChannel is None or itemConfig['subChannel'] == subChannel:
  960. found = True
  961. ret = pack(game, sdk, itemConfig)
  962. if ret:
  963. failureCount += 1
  964. else:
  965. successCount += 1
  966. if not found:
  967. print('subChannel "%s" no found' % subChannel)
  968. return 1
  969. print('success %d, failure %d' % (successCount, failureCount))
  970. return 0