diff options
author | renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> | 2022-12-01 15:19:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-01 15:19:41 +0000 |
commit | 54bb4676a7c16d959769e522ac018f3e3e822797 (patch) | |
tree | 931873c4048fa2ad4d64ef971fa398b63649e7bc /build-logic | |
parent | 0e993fca29343bc12688e326e17525c46fddc479 (diff) |
fix(deps): update kotlin to v1.7.22 (#2278)
* fix(deps): update kotlin to v1.7.22
* fix(gradle): allow Kotlin 1.7.22 for Compose Compiler
(cherry picked from commit 6c218c20bfd21e0a9ad75e3dfc98525d4ac40a7f)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'build-logic')
-rw-r--r-- | build-logic/kotlin-plugins/src/main/kotlin/app/passwordstore/gradle/KotlinCommonPlugin.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build-logic/kotlin-plugins/src/main/kotlin/app/passwordstore/gradle/KotlinCommonPlugin.kt b/build-logic/kotlin-plugins/src/main/kotlin/app/passwordstore/gradle/KotlinCommonPlugin.kt index 763b37d3..34d4675b 100644 --- a/build-logic/kotlin-plugins/src/main/kotlin/app/passwordstore/gradle/KotlinCommonPlugin.kt +++ b/build-logic/kotlin-plugins/src/main/kotlin/app/passwordstore/gradle/KotlinCommonPlugin.kt @@ -61,6 +61,8 @@ class KotlinCommonPlugin : Plugin<Project> { private val ADDITIONAL_COMPILER_ARGS = listOf( "-opt-in=kotlin.RequiresOptIn", + "-P", + "plugin:androidx.compose.compiler.plugins.kotlin:suppressKotlinVersionCompatibilityCheck=1.7.22", ) } } |