Skip to content

Commit

Permalink
update libs
Browse files Browse the repository at this point in the history
  • Loading branch information
softartdev committed Feb 29, 2024
1 parent abb7f99 commit 4663744
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 26 deletions.
24 changes: 12 additions & 12 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,39 +5,39 @@ minSdk = "21"
jdk = "17"
kotlin = "1.9.22"
agp = "8.2.2"
gms = "4.4.0"
gms = "4.4.1"
crashlytics = "2.9.9"
compose = "1.6.0-beta02"
compose = "1.6.0"
composeCompiler = "1.5.8"
coroutines = "1.7.3"
coroutines = "1.8.0"
sqlDelight = "2.0.1"
androidxSqlite = "2.4.0"
saferoom = "1.3.0"
androidSqlCipher = "4.5.4"
iosSqlCipher = "4.5.4"
sqlcipherKtnPod = "1.4.2"
decompose = "2.2.1-compose-experimental"
koin = "3.5.0"
decompose = "2.2.2-compose-experimental"
koin = "3.5.3"
kotlinx-datetime = "0.5.0"
napier = "2.7.1"
mokoResources = "0.24.0-alpha-3"
materialThemePrefs = "0.6.3"
mokoResources = "0.24.0-alpha-5"
materialThemePrefs = "0.6.4"
androidxActivityCompose = "1.8.2"
androidxComposeTest = "1.5.4"
androidxComposeTest = "1.6.2"
androidxCoreSplashscreen = "1.0.1"
androidxLegacySupport = "1.0.0"
androidxPreference = "1.2.1"
androidxMultidex = "2.0.1"
androidxLifecycle = "2.6.2"
androidxLifecycle = "2.7.0"
androidxArch = "2.2.0"
androidxTestExt = "1.1.5"
androidxTest = "1.5.2"
androidxTestOrchestrator = "1.4.2"
googleAndroidMaterial = "1.11.0"
firebase = "32.7.0"
firebase = "32.7.3"
leakCanary = "2.13"
junit = "4.13.2"
mockito = "5.2.0"
mockito = "5.10.0"
turbine = "1.0.0"
espresso = "3.5.1"
desugar = "2.0.4"
Expand Down Expand Up @@ -123,7 +123,7 @@ leakCanary-android-instrumentation = { module = "com.squareup.leakcanary:leakcan
junit = { module = "junit:junit", version.ref = "junit" }

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

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

Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Dec 23 08:03:45 GET 2023
#Sun Feb 11 01:50:04 GET 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
21 changes: 9 additions & 12 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -83,18 +83,15 @@ kotlin {
implementation(libs.koin.test)
implementation(libs.mokoResources.test)
}
androidMain {
dependsOn(commonMain.get())//TODO remove after update moko-resources > 0.23.0
dependencies {
implementation(libs.coroutines.android)
api(libs.sqlDelight.android)
implementation(libs.bundles.androidx.sqlite)
api(libs.commonsware.saferoom)
api(libs.android.sqlcipher)
api(libs.androidx.lifecycle.viewmodel)
implementation(libs.koin.android)
implementation(libs.espresso.idling.resource)
}
androidMain.dependencies {
implementation(libs.coroutines.android)
api(libs.sqlDelight.android)
implementation(libs.bundles.androidx.sqlite)
api(libs.commonsware.saferoom)
api(libs.android.sqlcipher)
api(libs.androidx.lifecycle.viewmodel)
implementation(libs.koin.android)
implementation(libs.espresso.idling.resource)
}
val androidUnitTest by getting {
dependsOn(commonTest.get())
Expand Down

0 comments on commit 4663744

Please sign in to comment.