diff options
author | renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> | 2024-05-22 07:12:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-22 07:12:27 +0000 |
commit | 8bae8dfe257eefa555edf8753850f070de3dafac (patch) | |
tree | 8bf8363631e0b44ed18ff4f910c58fa00dbcc579 /app/build.gradle.kts | |
parent | dd4a7023cd3f3e260319610eb0b73d0eb084a8ec (diff) |
fix(deps): update kotlin and compose to v2 (major) (#3064)
* fix(deps): update kotlin and compose to v2
* fix(build): switch to Kotlin Compose Compiler
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r-- | app/build.gradle.kts | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 872c1eae..b6f0a378 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -13,6 +13,7 @@ plugins { id("com.github.android-password-store.sentry") id("com.github.android-password-store.rename-artifacts") alias(libs.plugins.hilt) + alias(libs.plugins.kotlin.composeCompiler) } crowdin { @@ -30,10 +31,7 @@ android { } buildFeatures { compose = true } - composeOptions { - useLiveLiterals = false - kotlinCompilerExtensionVersion = libs.versions.composeCompiler.get() - } + composeOptions { useLiveLiterals = false } packaging { resources.excludes.add("META-INF/versions/**") } } |