From 8230d8239da2184237ae99efdffd4b53dd3b43ca Mon Sep 17 00:00:00 2001 From: AndnixSH <40742924+AndnixSH@users.noreply.github.com> Date: Tue, 20 Jan 2026 20:59:43 +0100 Subject: [PATCH] Auto remove remaining split elements --- APKToolGUI/ApkTool/ApkFixer.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/APKToolGUI/ApkTool/ApkFixer.cs b/APKToolGUI/ApkTool/ApkFixer.cs index 5144df1..4b18b2d 100644 --- a/APKToolGUI/ApkTool/ApkFixer.cs +++ b/APKToolGUI/ApkTool/ApkFixer.cs @@ -30,6 +30,8 @@ namespace APKToolGUI.ApkTool manifestText = manifestText.Replace("android:manageSpace=\"true\"", ""); manifestText = manifestText.Replace("android:localeConfig=\"@xml/locales_config\"", ""); manifestText = manifestText.Replace("STAMP_TYPE_DISTRIBUTION_APK", "STAMP_TYPE_STANDALONE_APK"); + manifestText = manifestText.Replace("android:requiredSplitTypes=\"(.*?)\"", ""); + manifestText = manifestText.Replace("android:splitTypes=\"(.*?)\"", ""); File.WriteAllText(manifestPath, manifestText); return true;