| 123456789101112131415161718192021222324252627 |
- # coding:utf8
- __author__ = 'shikuangzuqiukupai'
- 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
- import gw_apk_tool
- from xml.etree import ElementTree as ET
- ANDROID_NS = 'http://schemas.android.com/apk/res/android'
- def script_init(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameInfo):
- sdk_id = channelSdkInfo['id']
- gw_apk_tool.__apk_tool__ = 'apktool_2.4.1.jar'
- gw_data_center.pack_small = False
- return
|