Skip to content

Commit 76fed99

Browse files
Bump composeUi from 1.9.5 to 1.10.0 (#3388)
* Bump composeUi from 1.9.5 to 1.10.0 Bumps `composeUi` from 1.9.5 to 1.10.0. Updates `androidx.compose.runtime:runtime-livedata` from 1.9.5 to 1.10.0 Updates `androidx.compose.ui:ui-test-junit4` from 1.9.5 to 1.10.0 Updates `androidx.compose.ui:ui` from 1.9.5 to 1.10.0 Updates `androidx.compose.ui:ui-test-manifest` from 1.9.5 to 1.10.0 Updates `androidx.compose.ui:ui-tooling` from 1.9.5 to 1.10.0 Updates `androidx.compose.ui:ui-tooling-preview-android` from 1.9.5 to 1.10.0 --- updated-dependencies: - dependency-name: androidx.compose.runtime:runtime-livedata dependency-version: 1.10.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: androidx.compose.ui:ui-test-junit4 dependency-version: 1.10.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: androidx.compose.ui:ui dependency-version: 1.10.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: androidx.compose.ui:ui-test-manifest dependency-version: 1.10.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: androidx.compose.ui:ui-tooling dependency-version: 1.10.0 dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: androidx.compose.ui:ui-tooling-preview-android dependency-version: 1.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Fix lint error * Update fix keeping string annotations --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andreia Ferreira <51242456+andreia-ferreira@users.noreply.github.com> Co-authored-by: andreia <andreia.mp.ferreira@gmail.com>
1 parent 73cac13 commit 76fed99

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

app/src/main/java/org/groundplatform/android/ui/components/HyperlinkText.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ fun HyperlinkText(
4141
linkTextDecoration: TextDecoration = TextDecoration.None,
4242
fontSize: TextUnit = TextUnit.Unspecified,
4343
) {
44-
val fullText = LocalContext.current.getText(fullTextResId).toSpannable()
44+
val resources = LocalContext.current.resources
45+
val fullText = resources.getText(fullTextResId).toSpannable()
4546
val annotations = fullText.getSpans(0, fullText.length, Annotation::class.java)
4647

4748
val annotatedString = buildAnnotatedString {

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ appcompatVersion = "1.7.1"
1818
autoValueVersion = "1.11.1"
1919
cardviewVersion = "1.0.0"
2020
composeMaterial = "1.7.8"
21-
composeUi = "1.9.5"
21+
composeUi = "1.10.0"
2222
constraintlayoutVersion = "2.2.1"
2323
coreKtxVersion = "1.17.0"
2424
coreTesting = "2.2.0"

0 commit comments

Comments
 (0)