|
@@ -245,6 +245,7 @@ def script_last(SDK, decompileDir, channelSdkInfo, new_game_channel_info, gameIn
|
|
|
distutils.dir_util.mkpath(s3)
|
|
distutils.dir_util.mkpath(s3)
|
|
|
move_package(s1, s3, list_package)
|
|
move_package(s1, s3, list_package)
|
|
|
|
|
|
|
|
|
|
+
|
|
|
if sdk_id == "549" or sdk_id=="591":
|
|
if sdk_id == "549" or sdk_id=="591":
|
|
|
s1 = os.path.join(decompileDir, "smali_classes7", "com")
|
|
s1 = os.path.join(decompileDir, "smali_classes7", "com")
|
|
|
if os.path.exists(s1):
|
|
if os.path.exists(s1):
|
|
@@ -288,6 +289,14 @@ def move_smallsheep(decompileDir):
|
|
|
distutils.dir_util.mkpath(s3)
|
|
distutils.dir_util.mkpath(s3)
|
|
|
gw_apk_tool.move_package(s1, s3, list_package)
|
|
gw_apk_tool.move_package(s1, s3, list_package)
|
|
|
|
|
|
|
|
|
|
+ s1 = os.path.join(decompileDir, "smali_classes7","androidx")
|
|
|
|
|
+ if os.path.exists(s1):
|
|
|
|
|
+ smali_classes2_dir = create_mutil_smali(decompileDir)
|
|
|
|
|
+ s3 = os.path.join(smali_classes2_dir,"androidx")
|
|
|
|
|
+ list_package = ["legacy","lifecycle","loader","localbroadcastmanager","print","savedstate","slidingpanelayout"]
|
|
|
|
|
+ if not os.path.exists(s3):
|
|
|
|
|
+ distutils.dir_util.mkpath(s3)
|
|
|
|
|
+ move_package(s1, s3, list_package)
|
|
|
|
|
|
|
|
def create_mutil_smali(decompileDir):
|
|
def create_mutil_smali(decompileDir):
|
|
|
f_idx = 2
|
|
f_idx = 2
|