Bump horologist from 0.5.18 to 0.5.19 (#4156)

* Bump horologist from 0.5.18 to 0.5.19

Bumps `horologist` from 0.5.18 to 0.5.19.

Updates `com.google.android.horologist:horologist-composables` from 0.5.18 to 0.5.19
- [Release notes](https://github.com/google/horologist/releases)
- [Commits](https://github.com/google/horologist/compare/v0.5.18...v0.5.19)

Updates `com.google.android.horologist:horologist-compose-layout` from 0.5.18 to 0.5.19
- [Release notes](https://github.com/google/horologist/releases)
- [Commits](https://github.com/google/horologist/compare/v0.5.18...v0.5.19)

---
updated-dependencies:
- dependency-name: com.google.android.horologist:horologist-composables
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: com.google.android.horologist:horologist-compose-layout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Enable core library desugaring for wear module

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joris Pelgröm <joris.pelgrom@gmail.com>
This commit is contained in:
dependabot[bot] 2024-01-25 16:17:38 -05:00 committed by GitHub
parent e366ca15d6
commit 4f98dc0858
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View file

@ -55,6 +55,7 @@ reorderable = "0.9.6"
retrofit = "2.9.0"
room = "2.6.1"
sentry-android = "7.2.0"
tools-desugar-jdk-libs = "2.0.4"
watchfaceComplicationsDataSourceKtx = "1.2.0"
wear = "1.3.0"
wear-compose-foundation = "1.2.1"
@ -67,7 +68,7 @@ wearInput = "1.2.0-alpha02"
webkit = "1.9.0"
wear-remote-interactions = "1.0.0"
workRuntimeKtx = "2.9.0"
horologist = "0.5.18"
horologist = "0.5.19"
[plugins]
android-application = { id = "com.android.application", version.ref = "androidPlugin" }
@ -157,6 +158,7 @@ recyclerview = { module = "androidx.recyclerview:recyclerview", version.ref = "r
reorderable = { module = "org.burnoutcrew.composereorderable:reorderable", version.ref = "reorderable" }
retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit" }
sentry-android = { module = "io.sentry:sentry-android", version.ref = "sentry-android" }
tools-desugar-jdk = { module = "com.android.tools:desugar_jdk_libs", version.ref = "tools-desugar-jdk-libs" }
wear = { module = "androidx.wear:wear", version.ref = "wear" }
wear-compose-foundation = { module = "androidx.wear.compose:compose-foundation", version.ref = "wear-compose-foundation" }
wear-compose-material = { module = "androidx.wear.compose:compose-material3", version.ref = "wear-compose-material" }

View file

@ -58,6 +58,7 @@ android {
}
compileOptions {
isCoreLibraryDesugaringEnabled = true
sourceCompatibility(libs.versions.javaVersion.get())
targetCompatibility(libs.versions.javaVersion.get())
}
@ -74,6 +75,8 @@ android {
dependencies {
implementation(project(":common"))
coreLibraryDesugaring(libs.tools.desugar.jdk)
implementation(libs.kotlin.stdlib)
implementation(libs.kotlinx.coroutines.android)
implementation(libs.kotlinx.coroutines.guava)