From 3580feb0ae666b2f72bad8494831b3f24dd24b4b Mon Sep 17 00:00:00 2001 From: Cloudburst <18114966+C10udburst@users.noreply.github.com> Date: Wed, 31 Aug 2022 09:57:35 +0200 Subject: [PATCH] some small aapt tweaks --- .../cloudstream3/gradle/tasks/CompileResourcesTask.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/kotlin/com/lagradost/cloudstream3/gradle/tasks/CompileResourcesTask.kt b/src/main/kotlin/com/lagradost/cloudstream3/gradle/tasks/CompileResourcesTask.kt index 51074ce..b697465 100644 --- a/src/main/kotlin/com/lagradost/cloudstream3/gradle/tasks/CompileResourcesTask.kt +++ b/src/main/kotlin/com/lagradost/cloudstream3/gradle/tasks/CompileResourcesTask.kt @@ -32,6 +32,7 @@ abstract class CompileResourcesTask : Exec() { executable = aaptExecutable.path args("compile") args("--dir", input.asFile.get().path) + args("-v") args("-o", tmpRes.path) execute() } @@ -49,6 +50,8 @@ abstract class CompileResourcesTask : Exec() { args("-R", tmpRes.path) args("--manifest", manifestFile.asFile.get().path) args("--auto-add-overlay") + args("--warn-manifest-validation") + args("-v") args("-o", outputFile.asFile.get().path) execute() }