|
@@ -546,11 +546,11 @@ def copyGameSmaliCode(game, sdk, subChannel, config):
|
|
|
拷贝代码
|
|
|
'''
|
|
|
print('copyGameSmaliCode --> %s' % sdk)
|
|
|
- sdkPath = getFullSDKPath(sdk)
|
|
|
|
|
|
- smaliFile = os.path.join(sdkPath, 'gameSmali',game)
|
|
|
+ path = os.path.join(getCurrentPath(),"game_script",game,"gameSmali")
|
|
|
+
|
|
|
decompliePath = getDecompliePath(game, sdk, subChannel, config['cache'])
|
|
|
smaliPath = os.path.join(decompliePath, 'smali')
|
|
|
- ret = copyDir(smaliFile, smaliPath)
|
|
|
+ ret = copyDir(path, smaliPath)
|
|
|
|
|
|
return ret
|