# coding:utf8 __author__ = 'dong' import os import logging import xml.dom.minidom import re import shutil import glob from xml.etree.ElementTree import ElementTree, Element import distutils.dir_util import gw_file_system import gw_data_center from xml.etree import ElementTree as ET ANDROID_NS = 'http://schemas.android.com/apk/res/android' def script_init(workspace_sdk_dir, extract_dir, channel_sdk_info, new_game_channel_info, game_info): sdk_id = channel_sdk_info['id'] if sdk_id == "549": gw_data_center.pack_small = False logging.info('script_init: ' + str(channel_sdk_info)) def script_first(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo): # logging.info('------------SDK:'+SDK) # logging.info('------------decompileDir:'+decompileDir) # logging.info('------------channelSdkInfo:'+str(channelSdkInfo)) # logging.info('------------new_game_channel_info:'+str(new_game_channel_info)) # logging.info('------------gameInfo:'+str(gameInfo)) # logging.info("------rm baidu smali------") # restdir = decompileDir+"/"+"smali_classes2/com/baidu/gamesdk" # if os.path.exists(restdir): # shutil.rmtree(restdir) logging.info("-----debug exec first func-----") # game_apk = os.path.join(decompileDir, "game.apk") game_apk = decompileDir + "/../game.apk" if os.path.exists(game_apk): # A3AEECD8 gw_file_system.delete_apk_file_by_aapt(game_apk, "assets/39285EFA.dex") logging.info("-----debug-----") def script(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo): # s3 = decompileDir + "/smali_classes3" # A3AEECD8.dex dex = decompileDir + "../39285EFA.dex" asserts = os.path.join(decompileDir, "assets/39285EFA.dex") if os.path.exists(asserts) and os.path.exists(os.path.join(dex)): distutils.dir_util.copy_tree(dex, asserts) logging.info("-----debug-----") # 分包 split_package(decompileDir) sdk_id = channelSdkInfo['id'] if sdk_id == "323": modify_manifest(decompileDir) def script_last(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo): logging.info('------------channelSdkInfo:' + str(channelSdkInfo)) if channelSdkInfo['SDKName'] == 'reversefor360': replace_super_application(decompileDir) def split_package(decompileDir): s1 = os.path.join(decompileDir, "smali", "com") smali_classes2_dir = '' 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) s3 = os.path.join(smali_classes2_dir, "com") list_package = ["netease"] if not os.path.exists(s3): distutils.dir_util.mkpath(s3) move_package(s1, s3, list_package) 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) change_map = {".super Landroid/support/multidex/MultiDexApplication;": ".super Lcom/kf/framework/KFApplication;", "invoke-direct {p0}, Landroid/support/multidex/MultiDexApplication;->()V": "invoke-direct {p0}, Lcom/kf/framework/KFApplication;->()V", "invoke-super {p0, p1}, Landroid/support/multidex/MultiDexApplication;->attachBaseContext(Landroid/content/Context;)V": "invoke-super {p0, p1}, Lcom/kf/framework/KFApplication;->attachBaseContext(Landroid/content/Context;)V", "invoke-super {p0}, Landroid/support/multidex/MultiDexApplication;->onCreate()V": "invoke-super {p0}, Lcom/kf/framework/KFApplication;->onCreate()V", } def replace_super_application(decompileDir): smali_files = glob.glob( os.path.join(decompileDir, 'smali*/com/netease/ntunisdk/application/NtSdkApplication.smali')) if len(smali_files) == 1: game_application_file = smali_files[0] print game_application_file if os.path.isfile(game_application_file): with open(game_application_file, "r+") as f: file_str = f.read() for k, v in change_map.items(): file_str = file_str.replace(k, v) with open(game_application_file, "w+") as f: f.write(file_str) def modify_manifest(decompileDir): ET.register_namespace('android', ANDROID_NS) xmlparse = os.path.join(decompileDir, 'AndroidManifest.xml') root_node = ET.parse(xmlparse) root = root_node.getroot() name = '{' + ANDROID_NS + '}name' authorities = '{' + ANDROID_NS + '}foregroundServiceType' package_name = root.attrib.get('package') if package_name == None: return providers = root.findall('./application/service') if providers != None: for provider in providers: providerName = provider.attrib.get(name) if 'com.netease.ntunisdk.CcMomentRecordingForegroundService' == providerName: # 使用try 主要是为了 防止此属性不在时,导致的错误,而程序终止 try: del provider.attrib[authorities] except: "" root_node.write(xmlparse, 'utf-8') if __name__ == '__main__': replace_super_application("D:\\work\\tx360")