feat: disable customAapt logic

This commit is contained in:
oSumAtrIX 2023-08-21 02:25:35 +02:00
parent 9ae802052f
commit 452a620775
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -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 {