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() }