Skip to content

Commit 626dbf4

Browse files
committed
chore: update dependencies and enable parallel Gradle sync
- Update Gradle wrapper to 9.6.1 and enable `org.gradle.tooling.parallel` in `gradle.properties`. - Update Kotlin to 2.4.10 and Android Gradle Plugin to 9.3.0-rc02. - Upgrade various dependencies in version catalog, including Firebase (34.16.0), androidxSqlite (2.7.0), and androidxViewModel (2.11.0). - Remove shared Xcode scheme file for the `iosApp` target.
1 parent 16c5476 commit 626dbf4

4 files changed

Lines changed: 13 additions & 108 deletions

File tree

app/iosApp/iosApp.xcodeproj/xcshareddata/xcschemes/iosApp.xcscheme

Lines changed: 0 additions & 97 deletions
This file was deleted.

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ org.gradle.daemon=true
77
org.gradle.configureondemand=false
88
org.gradle.caching=true
99
org.gradle.configuration-cache=true
10+
# Enabled parallel sync for Gradle 9.4+
11+
org.gradle.tooling.parallel=true
1012

1113
kotlin.code.style=official
1214
kotlin.mpp.enableCInteropCommonization=true

gradle/libs.versions.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[versions]
22
jdk = "17"
3-
agp = "9.3.0-rc01"
4-
kotlin = "2.4.0"
3+
agp = "9.3.0-rc02"
4+
kotlin = "2.4.10"
55
compileSdk = "37"
66
targetSdk = "37"
77
minSdk = "23"
88
compose = "1.11.1"
99
coroutines = "1.11.0"
1010
sqlDelight = "2.3.2"
1111
room = "2.8.4"
12-
androidxSqlite = "2.6.2"
12+
androidxSqlite = "2.7.0"
1313
saferoom = "1.4.0"
14-
androidSqlCipher = "4.16.0"
14+
androidSqlCipher = "4.17.0"
1515
iosSqlCipher = "4.16.0"
16-
jdbcSQLite = "3.51.2.0"
16+
jdbcSQLite = "3.53.2.0"
1717
koin-bom = "4.2.2"
1818
kotlinx-serialization = "1.11.0"
1919
kotlinx-datetime = "0.8.0-0.6.x-compat"
@@ -26,11 +26,11 @@ composeMaterialAdaptive = "1.2.0"
2626
androidxAppcompat = "1.7.1"
2727
androidxBiometric = "1.1.0"
2828
androidxDatastore = "1.2.1"
29-
androidxViewModel = "2.10.0"
29+
androidxViewModel = "2.11.0"
3030
androidxNavigation = "2.9.2"
3131
androidxNavigationEvent = "1.1.0"
3232
androidxActivityCompose = "1.13.0"
33-
androidxComposeTest = "1.11.3"
33+
androidxComposeTest = "1.11.4"
3434
androidxCoreSplashscreen = "1.2.0"
3535
androidxTracing = "1.3.0"
3636
androidxLifecycle = "2.11.0"
@@ -39,7 +39,7 @@ androidxPaging = "3.5.0"
3939
androidxTestExt = "1.3.0"
4040
androidxTest = "1.7.0"
4141
androidxTestOrchestrator = "1.6.1"
42-
firebase = "34.15.0"
42+
firebase = "34.16.0"
4343
firebaseWeb = "12.15.0"
4444
leakCanary = "2.14"
4545
junit = "4.13.2"
@@ -49,7 +49,7 @@ espresso = "3.7.0"
4949
desugar = "2.1.5"
5050
androidSecurityLint = "1.0.4"
5151
appdirs = "1.5.0"
52-
uiTooling = "1.11.3"
52+
uiTooling = "1.11.4"
5353
download = "5.7.0"
5454
okio = "3.17.0"
5555
accompanist-permissions = "0.37.3"

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#Sat May 16 20:28:48 GET 2026
1+
#Tue Jul 14 19:40:31 GET 2026
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-all.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.6.1-all.zip
55
networkTimeout=10000
66
validateDistributionUrl=true
77
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)