| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- # coding:utf8
- __author__ = 'Snow'
- import os
- import logging
- import xml.dom.minidom
- import re
- import shutil
- import glob
- import distutils.dir_util
- import gw_file_system
- from xml.etree import ElementTree as ET
- import gw_data_center
- ANDROID_NS = 'http://schemas.android.com/apk/res/android'
- def script_init(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo):
- gw_data_center.pack_small = False
- return
- def script(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo):
- return
- sdk_id = channelSdkInfo['id']
- if sdk_id == "512":
- modify_manifest(decompileDir)
- modify_manifest_requestLegacyExternalStorage(decompileDir)
- def script_last(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo):
- logging.info('------------channelSdkInfo:' + str(channelSdkInfo))
- # smali_classes4
- s1 = os.path.join(decompileDir, "smali_classes2")
- if not os.path.exists(s1):
- return
- smali_classes2_dir = create_mutil_smali(decompileDir)
- s3 = smali_classes2_dir
- list_package = ["androidx"]
- if not os.path.exists(s3):
- distutils.dir_util.mkpath(s3)
- move_package(s1, s3, list_package)
- s1 = os.path.join(decompileDir, "smali_classes7", "com")
- if not os.path.exists(s1):
- return
- smali_classes2_dir = create_mutil_smali(decompileDir)
- s3 = smali_classes2_dir
- list_package = ["hjr", "huya", "huyaudbunify", "ipaynow", "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)
- 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):
- files = os.listdir(tmp)
- if len(files) == 0:
- smali_classes2_dir = tmp
- break
- f_idx += 1
- else:
- smali_classes2_dir = tmp
- break
- # endwhile
- if not os.path.exists(smali_classes2_dir):
- os.mkdir(smali_classes2_dir)
- return smali_classes2_dir
- 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.cc.screen_record.codec.screencapture.ScreenCaptureService' == providerName:
- # 使用try 主要是为了 防止此属性不在时,导致的错误,而程序终止
- try:
- del provider.attrib[authorities]
- except:
- ""
- root_node.write(xmlparse, 'utf-8')
- def modify_manifest_requestLegacyExternalStorage(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 + '}requestLegacyExternalStorage'
- package_name = root.attrib.get('package')
- if package_name == None:
- return
- providers = root.findall('./application')
- if providers != None:
- for provider in providers:
- # 使用try 主要是为了 防止此属性不在时,导致的错误,而程序终止
- try:
- del provider.attrib[authorities]
- except:
- ""
- root_node.write(xmlparse, 'utf-8')
- if __name__ == '__main__':
- ""
|