aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2022-01-24 08:16:58 +0530
committerGitHub <noreply@github.com>2022-01-24 08:16:58 +0530
commitd838b7da59c551ed13e85795211325477165b071 (patch)
tree414e5c31fdaed2abb9579cf67315ee2109a87a78
parent98010c7ff9f6fd4cf1e71d2c0ead30311bfd2d2c (diff)
all: upgrade to AGP 7.1.0-rc01 (#1678)
-rw-r--r--app/build.gradle.kts9
-rw-r--r--gradle/libs.versions.toml2
2 files changed, 6 insertions, 5 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() }
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index eaf6911b..c12302b5 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -39,7 +39,7 @@ androidx-swiperefreshlayout = "androidx.swiperefreshlayout:swiperefreshlayout:1.
aps-sublimeFuzzy = "com.github.android-password-store:sublime-fuzzy:2.0.0"
aps-zxingAndroidEmbedded = "com.github.android-password-store:zxing-android-embedded:4.2.1"
-build-agp = "com.android.tools.build:gradle:7.0.4"
+build-agp = "com.android.tools.build:gradle:7.1.0-rc01"
build-binarycompat = "org.jetbrains.kotlinx:binary-compatibility-validator:0.8.0"
build-kover = "org.jetbrains.kotlinx:kover:0.4.4"
build-dokka = "org.jetbrains.dokka:dokka-gradle-plugin:1.6.10"