|
@@ -733,7 +733,8 @@ def generateNewRFile(game, sdk, subChannel, config):
|
|
|
print('baksmali classes.dex ...')
|
|
|
baksmaliPath = file_utils.getBaksmaliPath()
|
|
|
outPath = file_utils.getFullPath(decompliePath, 'out')
|
|
|
- ret = file_utils.execJarCmd(baksmaliPath, '-o "%s" "%s"' % (outPath, outDex))
|
|
|
+
|
|
|
+ ret = file_utils.execJarCmd(baksmaliPath, 'd "%s" -o "%s"' % (outDex, outPath))
|
|
|
if ret:
|
|
|
return ret
|
|
|
|
|
@@ -805,7 +806,7 @@ def packJar(game, sdk, subChannel, config):
|
|
|
baksmaliPath = file_utils.getBaksmaliPath()
|
|
|
outPath = file_utils.getFullPath(decompliePath, 'out')
|
|
|
|
|
|
- ret = file_utils.execJarCmd(baksmaliPath, '-o "%s" "%s"' % (outPath, outDex))
|
|
|
+ ret = file_utils.execJarCmd(baksmaliPath, 'd "%s" -o "%s"' % (outDex, outPath))
|
|
|
if ret:
|
|
|
return ret
|
|
|
|
|
@@ -858,7 +859,7 @@ def packLogJar(game, sdk, subChannel, config, logSdk):
|
|
|
baksmaliPath = file_utils.getBaksmaliPath()
|
|
|
outPath = file_utils.getFullPath(decompliePath, 'out')
|
|
|
|
|
|
- ret = file_utils.execJarCmd(baksmaliPath, '-o "%s" "%s"' % (outPath, outDex))
|
|
|
+ ret = file_utils.execJarCmd(baksmaliPath, 'd "%s" -o "%s"' % (outDex, outPath))
|
|
|
if ret:
|
|
|
return ret
|
|
|
|