Skip to content

Commit 4663744

Browse files
committed
update libs
1 parent abb7f99 commit 4663744

3 files changed

Lines changed: 23 additions & 26 deletions

File tree

gradle/libs.versions.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,39 +5,39 @@ minSdk = "21"
55
jdk = "17"
66
kotlin = "1.9.22"
77
agp = "8.2.2"
8-
gms = "4.4.0"
8+
gms = "4.4.1"
99
crashlytics = "2.9.9"
10-
compose = "1.6.0-beta02"
10+
compose = "1.6.0"
1111
composeCompiler = "1.5.8"
12-
coroutines = "1.7.3"
12+
coroutines = "1.8.0"
1313
sqlDelight = "2.0.1"
1414
androidxSqlite = "2.4.0"
1515
saferoom = "1.3.0"
1616
androidSqlCipher = "4.5.4"
1717
iosSqlCipher = "4.5.4"
1818
sqlcipherKtnPod = "1.4.2"
19-
decompose = "2.2.1-compose-experimental"
20-
koin = "3.5.0"
19+
decompose = "2.2.2-compose-experimental"
20+
koin = "3.5.3"
2121
kotlinx-datetime = "0.5.0"
2222
napier = "2.7.1"
23-
mokoResources = "0.24.0-alpha-3"
24-
materialThemePrefs = "0.6.3"
23+
mokoResources = "0.24.0-alpha-5"
24+
materialThemePrefs = "0.6.4"
2525
androidxActivityCompose = "1.8.2"
26-
androidxComposeTest = "1.5.4"
26+
androidxComposeTest = "1.6.2"
2727
androidxCoreSplashscreen = "1.0.1"
2828
androidxLegacySupport = "1.0.0"
2929
androidxPreference = "1.2.1"
3030
androidxMultidex = "2.0.1"
31-
androidxLifecycle = "2.6.2"
31+
androidxLifecycle = "2.7.0"
3232
androidxArch = "2.2.0"
3333
androidxTestExt = "1.1.5"
3434
androidxTest = "1.5.2"
3535
androidxTestOrchestrator = "1.4.2"
3636
googleAndroidMaterial = "1.11.0"
37-
firebase = "32.7.0"
37+
firebase = "32.7.3"
3838
leakCanary = "2.13"
3939
junit = "4.13.2"
40-
mockito = "5.2.0"
40+
mockito = "5.10.0"
4141
turbine = "1.0.0"
4242
espresso = "3.5.1"
4343
desugar = "2.0.4"
@@ -123,7 +123,7 @@ leakCanary-android-instrumentation = { module = "com.squareup.leakcanary:leakcan
123123
junit = { module = "junit:junit", version.ref = "junit" }
124124

125125
mockito-core = { module = "org.mockito:mockito-core", version.ref = "mockito" }
126-
mockito-inline = { module = "org.mockito:mockito-inline", version.ref = "mockito" }
126+
mockito-inline = { module = "org.mockito:mockito-inline", version = "5.2.0" }
127127

128128
turbine = { module = "app.cash.turbine:turbine", version.ref = "turbine" }
129129

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sat Dec 23 08:03:45 GET 2023
1+
#Sun Feb 11 01:50:04 GET 2024
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

shared/build.gradle.kts

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -83,18 +83,15 @@ kotlin {
8383
implementation(libs.koin.test)
8484
implementation(libs.mokoResources.test)
8585
}
86-
androidMain {
87-
dependsOn(commonMain.get())//TODO remove after update moko-resources > 0.23.0
88-
dependencies {
89-
implementation(libs.coroutines.android)
90-
api(libs.sqlDelight.android)
91-
implementation(libs.bundles.androidx.sqlite)
92-
api(libs.commonsware.saferoom)
93-
api(libs.android.sqlcipher)
94-
api(libs.androidx.lifecycle.viewmodel)
95-
implementation(libs.koin.android)
96-
implementation(libs.espresso.idling.resource)
97-
}
86+
androidMain.dependencies {
87+
implementation(libs.coroutines.android)
88+
api(libs.sqlDelight.android)
89+
implementation(libs.bundles.androidx.sqlite)
90+
api(libs.commonsware.saferoom)
91+
api(libs.android.sqlcipher)
92+
api(libs.androidx.lifecycle.viewmodel)
93+
implementation(libs.koin.android)
94+
implementation(libs.espresso.idling.resource)
9895
}
9996
val androidUnitTest by getting {
10097
dependsOn(commonTest.get())

0 commit comments

Comments
 (0)