We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bc45e9 commit e76346aCopy full SHA for e76346a
android/app/build.gradle
@@ -72,6 +72,13 @@ android {
72
signingConfigs.release : signingConfigs.debug
73
}
74
75
+
76
+ lint {
77
+ // For docs on options available here:
78
+ // https://developer.android.com/reference/tools/gradle-api/8.5/com/android/build/api/dsl/Lint
79
+ checkAllWarnings = true
80
+ warningsAsErrors = true
81
+ }
82
83
84
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
tools/check
@@ -362,6 +362,11 @@ run_android() {
362
files_check android/ \
363
|| return 0
364
365
+ # For docs on this Android linter:
366
+ # https://developer.android.com/studio/write/lint
367
+ tools/gradle -q :app:lint \
368
+ || return
369
370
flutter build apk \
371
|| return
372
0 commit comments