package_utils_shanshen.py 33 KB

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