Skip to content

Commit b1376a5

Browse files
committed
Update dependencies
1 parent dda946d commit b1376a5

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,4 @@ app/credentials.json
102102
/app/prod/release/
103103

104104
secret.properties
105+
/.kotlin/

composed/src/main/kotlin/com/w2sv/composed/Resources.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,7 @@ private fun Resources.getHtmlText(@StringRes id: Int, vararg args: Any): Spanned
6464
String.format(
6565
getText(id).toSpanned().toHtmlWithoutParagraphs(),
6666
*args
67-
.map {
68-
if (it is Spanned) it.toHtmlWithoutParagraphs() else it
69-
}
67+
.map { if (it is Spanned) it.toHtmlWithoutParagraphs() else it }
7068
.toTypedArray()
7169
),
7270
HtmlCompat.FROM_HTML_MODE_COMPACT

gradle/libs.versions.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
minSdk = "21"
33
compileSdk = "34"
44

5-
kotlin = "2.0.0"
5+
kotlin = "2.0.21"
66
agp = "8.3.2"
77
kover = "0.7.6"
88

9-
compose-ui = "1.6.8"
10-
compose-material3 = "1.2.1"
11-
androidx-core-ktx = "1.13.1"
12-
androidx-annotation = "1.8.0"
9+
compose-ui = "1.7.5"
10+
compose-material3 = "1.3.1"
11+
androidx-core-ktx = "1.15.0"
12+
androidx-annotation = "1.9.1"
1313
google-accompanist-permissions = "0.34.0"
14-
compose-lint-checks = "1.3.1"
14+
compose-lint-checks = "1.4.2"
1515
junit = "4.13.2"
16-
uiTestJunit4Android = "1.6.8"
17-
robolectric = "4.12.2"
16+
uiTestJunit4Android = "1.7.5"
17+
robolectric = "4.13"
1818

1919
[libraries]
2020
compose-ui = { module = "androidx.compose.ui:ui", version.ref = "compose-ui" }

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)