Android: Enable all warnings on javac for user code too

In addtion to 1cf03c974c433b7a5330b56bd9e519287fce6f7f we should also
enable all warnings in the template as a recommendation for users.

Pick-to: 6.10
Change-Id: If60a3d9f3c1fd97b49ec7513f781bdfe1775d9d4
Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
This commit is contained in:
Lars Schmertmann 2025-05-21 08:56:54 +02:00
parent 1260aaf954
commit 577f9ebfe6

View File

@ -58,6 +58,7 @@ android {
tasks.withType(JavaCompile) {
options.incremental = true
options.compilerArgs += ['-Xlint:all']
}
compileOptions {