diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-01-24 08:16:58 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-24 08:16:58 +0530 |
commit | d838b7da59c551ed13e85795211325477165b071 (patch) | |
tree | 414e5c31fdaed2abb9579cf67315ee2109a87a78 /app | |
parent | 98010c7ff9f6fd4cf1e71d2c0ead30311bfd2d2c (diff) |
all: upgrade to AGP 7.1.0-rc01 (#1678)
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle.kts | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index e171a814..4bb553c9 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -60,10 +60,11 @@ android { buildFeatures.compose = true lint { - isAbortOnError = true - isCheckReleaseBuilds = false - disable("MissingTranslation", "PluralsCandidate", "ImpliedQuantity") - disable("CoroutineCreationDuringComposition") + abortOnError = true + checkReleaseBuilds = false + disable.add("MissingTranslation") + disable.add("PluralsCandidate") + disable.add("ImpliedQuantity") } composeOptions { kotlinCompilerExtensionVersion = libs.versions.compose.get() } |