mirror of
https://github.com/revanced/Apktool.git
synced 2025-05-01 14:44:26 +02:00
feat: disable customAapt
logic
This commit is contained in:
parent
9ae802052f
commit
452a620775
@ -365,7 +365,10 @@ public class AaptInvoker {
|
||||
throws AndrolibException {
|
||||
|
||||
String aaptPath = mConfig.aaptPath;
|
||||
boolean customAapt = !aaptPath.isEmpty();
|
||||
// Mock using the included AAPT binary instead of a custom one.
|
||||
// This is necessary, otherwise extension of every file from doNotCompress will be specified in the AAPT command
|
||||
// which causes builds to fail.
|
||||
boolean customAapt = false; // !aaptPath.isEmpty();
|
||||
List<String> cmd = new ArrayList<>();
|
||||
|
||||
try {
|
||||
|
Loading…
x
Reference in New Issue
Block a user