diff options
author | renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> | 2023-08-24 04:50:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-24 04:50:11 +0000 |
commit | b708aca9e51692a2454a97a104fab71299f7a8fa (patch) | |
tree | 4eb4f689565929c15cc575c95aa47c988a7a3d74 | |
parent | 8e9d9756931fd01475220e45b0f8f38b09451527 (diff) |
chore(deps): update kotlin and compose (#2657)
* chore(deps): update kotlin and compose
* fix(deps): use prerelease Compose Compiler
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
-rw-r--r-- | gradle/libs.versions.toml | 4 | ||||
-rw-r--r-- | settings.gradle.kts | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 82529612..a962a0f7 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -4,11 +4,11 @@ androidxActivity = "1.8.0-alpha07" bouncycastle = "1.76" moshi = "1.15.0" # @keep used for kotlinCompilerExtensionVersion -composeCompiler = "1.5.1" +composeCompiler = "1.5.3-dev-k1.9.10-593b4c95fce" coroutines = "1.7.3" flowbinding = "1.2.0" hilt = "2.47" -kotlin = "1.9.0" +kotlin = "1.9.10" leakcanary = "2.12" lifecycle = "2.6.1" diff --git a/settings.gradle.kts b/settings.gradle.kts index be182556..119d9018 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -87,7 +87,6 @@ dependencyResolutionManagement { includeGroup("androidx.cardview") includeGroup("androidx.collection") includeGroup("androidx.compose.animation") - includeGroup("androidx.compose.compiler") includeGroup("androidx.compose.foundation") includeGroup("androidx.compose.material") includeGroup("androidx.compose.material3") @@ -164,6 +163,10 @@ dependencyResolutionManagement { forRepository { maven("https://storage.googleapis.com/r8-releases/raw") } filter { includeModule("com.android.tools", "r8") } } + exclusiveContent { + forRepository { maven("https://androidx.dev/storage/compose-compiler/repository") } + filter { includeGroup("androidx.compose.compiler") } + } mavenCentral() } } |