mirror of
https://github.com/AndnixSH/APKToolGUI.git
synced 2026-05-04 11:02:27 +00:00
Fixed issue decompiling split apk using Apkeditor
This commit is contained in:
@@ -636,7 +636,10 @@ namespace APKToolGUI
|
||||
code = apkeditor.Merge(extractedDir, tempApk);
|
||||
if (code == 0)
|
||||
{
|
||||
code = apktool.Decompile(tempApk, tempDecApk);
|
||||
if (useAPKEditorForDecompilingItem.Checked)
|
||||
code = apkeditor.Decompile(tempApk, tempDecApk);
|
||||
else
|
||||
code = apktool.Decompile(tempApk, tempDecApk);
|
||||
|
||||
if (code == 0)
|
||||
{
|
||||
|
||||
@@ -96,7 +96,7 @@ namespace APKToolGUI.Handlers
|
||||
}
|
||||
}
|
||||
|
||||
if (inputFile.ContainsAny(".xapk", ".zip", ".apks", ".apkm") && !main.useAPKEditorForDecompilingItem.Checked)
|
||||
if (inputFile.ContainsAny(".xapk", ".zip", ".apks", ".apkm"))
|
||||
{
|
||||
await main.MergeAndDecompile(inputFile);
|
||||
}
|
||||
|
||||
@@ -93,7 +93,7 @@ namespace APKToolGUI.Handlers
|
||||
if (!Settings.Default.Decode_DontParseApkInfo)
|
||||
await main.GetApkInfo(apkFile);
|
||||
|
||||
if (apkFile.ContainsAny(".xapk", ".zip", ".apks", ".apkm") && !main.useAPKEditorForDecompilingItem.Checked)
|
||||
if (apkFile.ContainsAny(".xapk", ".zip", ".apks", ".apkm"))
|
||||
{
|
||||
await main.MergeAndDecompile(apkFile);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user