# coding:utf8 __author__ = '第五人格网易' import os import logging import xml.dom.minidom import re import shutil import glob import distutils.dir_util import gw_file_system import gw_data_center def script_init(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo): gw_data_center.pack_small = False return def script_pre(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo): return def script_second(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo): public_xml = os.path.join(decompileDir, "res/values-v28/styles.xml") if os.path.exists(public_xml): os.remove(public_xml) return def script(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo): return def script_last(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo): s1 = os.path.join(decompileDir, "smali_classes3") smali_classes_new = create_mutil_smali(decompileDir) s3 = os.path.join(decompileDir, smali_classes_new) list_package = ["cn"] if not os.path.exists(s3): distutils.dir_util.mkpath(s3) move_package(s1, s3, list_package) s1 = os.path.join(decompileDir, "smali_classes3/com") smali_classes_new = create_mutil_smali(decompileDir) s3 = os.path.join(decompileDir, smali_classes_new) list_package = ["facebook", "google", "hutong"] if not os.path.exists(s3): distutils.dir_util.mkpath(s3) move_package(s1, s3, list_package) return def move_package(s1, s3, list_package): for d in list_package: src = os.path.join(s1, d) if os.path.exists(src): dst = os.path.join(s3, d) distutils.dir_util.copy_tree(src, dst) distutils.dir_util.remove_tree(src) def add_do_not_compress(extract_dir): goal_file = os.path.join(extract_dir, 'apktool.yml') print(os.path.isfile(goal_file)) if os.path.isfile(goal_file): logging.info('method_proceed: ' + 'goal_file') print(goal_file) with open(goal_file, 'r+') as f: cont = f.read() print(cont) change_str = '- assets/res/video.mini.npk' str = '- assets/res/video.mini.npk\n' \ '- assets' cont = cont.replace(change_str, str) with open(goal_file, 'w+') as tf: tf.write(cont) def del_hjr(decompileDir): x86 = os.path.join(decompileDir, 'smali_classes3/com/hjr') if os.path.exists(x86): shutil.rmtree(x86) def create_mutil_smali(decompileDir): f_idx = 2 while True: tmp = gw_file_system.get_full_path(os.path.join(decompileDir, 'smali_classes%d' % f_idx)) tmp = tmp.replace('\\', '/') tmp = re.sub('/+', '/', tmp) if os.path.exists(tmp): f_idx += 1 else: smali_classes2_dir = tmp break # endwhile os.mkdir(smali_classes2_dir) return smali_classes2_dir if __name__ == '__main__': del_hjr("C:\\Users\\Administrator\\Desktop\\identity") add_do_not_compress("C:\\Users\\Administrator\\Desktop\\identity")