some small aapt tweaks

This commit is contained in:
Cloudburst 2022-08-31 09:57:35 +02:00
parent ec90f79c5b
commit 3580feb0ae
1 changed files with 3 additions and 0 deletions

View File

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