chore(deps): update dependency androidx.compose.compiler:compiler to v1.5.6 (#2798)

* chore(deps): update dependency androidx.compose.compiler:compiler to v1.5.6

* fix(build): allow Compose Compiler to be sourced gMaven

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
renovate[bot] 2023-12-06 19:09:09 +00:00 committed by GitHub
parent 6614e7e176
commit d9a389a49f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View file

@ -4,7 +4,7 @@ androidxActivity = "1.8.1"
bouncycastle = "1.77" bouncycastle = "1.77"
moshi = "1.15.0" moshi = "1.15.0"
# @keep used for kotlinCompilerExtensionVersion # @keep used for kotlinCompilerExtensionVersion
composeCompiler = "1.5.5-dev-k1.9.21-163bb051fe5" composeCompiler = "1.5.6"
coroutines = "1.7.3" coroutines = "1.7.3"
flowbinding = "1.2.0" flowbinding = "1.2.0"
hilt = "2.49" hilt = "2.49"

View file

@ -87,6 +87,7 @@ dependencyResolutionManagement {
includeGroup("androidx.cardview") includeGroup("androidx.cardview")
includeGroup("androidx.collection") includeGroup("androidx.collection")
includeGroup("androidx.compose.animation") includeGroup("androidx.compose.animation")
includeGroup("androidx.compose.compiler")
includeGroup("androidx.compose.foundation") includeGroup("androidx.compose.foundation")
includeGroup("androidx.compose.material") includeGroup("androidx.compose.material")
includeGroup("androidx.compose.material3") includeGroup("androidx.compose.material3")
@ -160,9 +161,9 @@ dependencyResolutionManagement {
forRepository { maven("https://storage.googleapis.com/r8-releases/raw") } forRepository { maven("https://storage.googleapis.com/r8-releases/raw") }
filter { includeModule("com.android.tools", "r8") } filter { includeModule("com.android.tools", "r8") }
} }
exclusiveContent { maven("https://androidx.dev/storage/compose-compiler/repository") {
forRepository { maven("https://androidx.dev/storage/compose-compiler/repository") } name = "Compose Compiler Snapshots"
filter { includeGroup("androidx.compose.compiler") } content { includeGroup("androidx.compose.compiler") }
} }
mavenCentral() mavenCentral()
} }