| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- # coding:utf8
- __author__ = 'dong'
- import os
- import logging
- import xml.dom.minidom
- import re
- import shutil
- import glob
- import distutils.dir_util
- import os
- import gw_apk_tool
- import gw_data_center
- def script(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo):
- # if channelSdkInfo['id'] == '597':
- # gw_data_center.pack_small = True
- return
- def script_second(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo):
- return
- def script(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo):
- # logging.info('------------channelSdkInfo:' + str(channelSdkInfo))
- # if channelSdkInfo['id'] == '597':
- # logging.info("remove_navigate")
- # remove_navigate(decompileDir)
- return
- def script_last(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo):
- logging.info('------------channelSdkInfo:' + str(channelSdkInfo))
- if channelSdkInfo['id'] == '597':
- move(decompileDir)
- else:
- ""
- def move(decompileDir):
- s1 = os.path.join(decompileDir, "smali/androidx")
- smali_classes_new = gw_apk_tool.create_mutil_smali(decompileDir)
- s3 = os.path.join(decompileDir, smali_classes_new, "androidx")
- list_package = ["activity","arch","coordinatorlayout","customview","fragment","lifecycle","annotation","asynclayoutinflater","core","documentfile","interpolator","loader","appcompat","collection","cursoradapter","drawerlayout","legacy","localbroadcastmanager"]
- if not os.path.exists(s3):
- distutils.dir_util.mkpath(s3)
- gw_apk_tool.move_package(s1, s3, list_package)
- def remove_navigate(decompileDir):
- tmp_res = os.path.join(decompileDir, "res", "navigation")
- tmp_public_xml = os.path.join(decompileDir, "res", "values", "public.xml")
- if os.path.exists(tmp_res):
- distutils.dir_util.remove_tree(tmp_res)
- if os.path.exists(tmp_public_xml):
- os.remove(tmp_public_xml)
- def move_10_bytedance(decompileDir):
- s1 = os.path.join(decompileDir, "smali_classes10/com/bytedance")
- smali_classes_new = gw_apk_tool.create_mutil_smali(decompileDir)
- s3 = os.path.join(decompileDir, smali_classes_new, "com/bytedance")
- list_package = ["ttgame"]
- if not os.path.exists(s3):
- distutils.dir_util.mkpath(s3)
- gw_apk_tool.move_package(s1, s3, list_package)
- def handle_public_xml(public_xml_path, remove_node):
- if not os.path.exists(public_xml_path):
- logging.info('public_xml is null: ' + public_xml_path)
- return
- new_lines = []
- with open(public_xml_path, 'r+') as f:
- for line in f.readlines():
- # l = line.strip()
- if line.find(remove_node) > -1:
- continue
- new_lines.append(line)
- f.seek(0)
- f.truncate()
- f.writelines(new_lines)
- return
- if __name__ == '__main__':
- # del_qihoo("C:\\Users\\Administrator\\Desktop\\zt")
- remove_navigate("G:\\autopack2.0_kuaifa\\tool\\workspace\\lrs360\\13651\\extract")
|