Ignore lint warnings for Android Gradle Plugin version
Some checks failed
Build & Test / Validate (pull_request) Successful in 19s
Build & Test / Run Unit Tests (pull_request) Failing after 8m37s
Build & Test / Run UI Tests (pull_request) Successful in 12m11s

I've already configured Renovate to automatically keep the dependencies up to date so I don't need the lint to be failing builds because of outdated dependencies.
This commit is contained in:
William Brawner 2024-08-21 20:57:57 -06:00
parent 265d3bfcd8
commit 2a9d96428a
Signed by: wbrawner
GPG key ID: 8FF12381C6C90D35
4 changed files with 4 additions and 0 deletions

View file

@ -98,6 +98,7 @@ android {
} }
} }
lint { lint {
disable += "AndroidGradlePluginVersion"
warningsAsErrors = true warningsAsErrors = true
} }
} }

View file

@ -48,6 +48,7 @@ android {
jvmTarget = "1.8" jvmTarget = "1.8"
} }
lint { lint {
disable += "AndroidGradlePluginVersion"
warningsAsErrors = true warningsAsErrors = true
} }
} }

View file

@ -34,6 +34,7 @@ android {
jvmTarget = "1.8" jvmTarget = "1.8"
} }
lint { lint {
disable += "AndroidGradlePluginVersion"
warningsAsErrors = true warningsAsErrors = true
} }
} }

View file

@ -34,6 +34,7 @@ android {
jvmTarget = "1.8" jvmTarget = "1.8"
} }
lint { lint {
disable += "AndroidGradlePluginVersion"
warningsAsErrors = true warningsAsErrors = true
} }
} }