Fixed issue decompiling split apk using Apkeditor

This commit is contained in:
AndnixSH
2024-09-30 15:41:38 +02:00
parent f2329a4b57
commit 48b6736ccf
3 changed files with 6 additions and 3 deletions
+4 -1
View File
@@ -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);
}
+1 -1
View File
@@ -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);
}