Skip to content

Commit f6d7dea

Browse files
committed
Update dependencies for demos
1 parent a1086c9 commit f6d7dea

File tree

5 files changed

+34
-30
lines changed

5 files changed

+34
-30
lines changed

demos/android-supabase-todolist/app/src/main/java/com/powersync/androidexample/powersync/Todo.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ import kotlinx.coroutines.flow.MutableStateFlow
1515
import kotlinx.coroutines.flow.StateFlow
1616
import kotlinx.coroutines.flow.flowOf
1717
import kotlinx.coroutines.launch
18-
import kotlinx.datetime.Clock
18+
import kotlin.time.Clock
19+
import kotlin.time.ExperimentalTime
1920

21+
@OptIn(ExperimentalTime::class)
2022
internal class Todo(
2123
private val db: PowerSyncDatabase,
2224
private val attachmentsQueue: AttachmentQueue?,

demos/android-supabase-todolist/gradle/libs.versions.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[versions]
2-
agp = "8.10.1"
2+
agp = "8.11.1"
33
coreSplashscreen = "1.0.1"
4-
kotlin = "2.1.10"
5-
coreKtx = "1.15.0"
4+
kotlin = "2.2.0"
5+
coreKtx = "1.16.0"
66
junit = "4.13.2"
7-
junitVersion = "1.2.1"
8-
espressoCore = "3.6.1"
9-
lifecycleRuntimeKtx = "2.8.7"
7+
junitVersion = "1.3.0"
8+
espressoCore = "3.7.0"
9+
lifecycleRuntimeKtx = "2.9.2"
1010
activityCompose = "1.10.1"
11-
composeBom = "2025.02.00"
11+
composeBom = "2025.07.00"
1212
materialIconsExtended = "1.7.8"
13-
uuid = "0.8.2"
14-
kermit = "2.0.5"
15-
sqldelight = "2.0.2"
13+
uuid = "0.8.4"
14+
kermit = "2.0.6"
15+
sqldelight = "2.1.0"
1616

1717
[libraries]
1818
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }

demos/supabase-todolist/gradle/libs.versions.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,36 +4,36 @@ android-minSdk = "24"
44
android-targetSdk = "35"
55
android-compileSdk = "35"
66
java = "17"
7-
atomicfu = "0.27.0"
7+
atomicfu = "0.29.0"
88

99
# Dependencies
10-
kotlin = "2.1.10"
11-
coroutines = "1.8.1"
12-
kotlinx-datetime = "0.6.2"
13-
kotlinx-io = "0.5.4"
14-
ktor = "3.1.0"
15-
sqliteJdbc = "3.45.2.0"
16-
uuid = "0.8.2"
17-
buildKonfig = "0.15.1"
18-
koin-bom = "4.0.2"
10+
kotlin = "2.2.0"
11+
coroutines = "1.10.2"
12+
kotlinx-datetime = "0.7.1"
13+
kotlinx-io = "0.8.0"
14+
ktor = "3.2.3"
15+
sqliteJdbc = "3.50.3.0"
16+
uuid = "0.8.4"
17+
buildKonfig = "0.17.1"
18+
koin-bom = "4.1.0"
1919

2020
junit = "4.13.2"
2121

22-
compose = "1.6.11"
23-
compose-preview = "1.7.8"
22+
compose = "1.8.2"
23+
compose-preview = "1.8.3"
2424
lifecycle = "2.8.4"
2525

2626
# plugins
27-
android-gradle-plugin = "8.10.1"
27+
android-gradle-plugin = "8.11.1"
2828

2929
# Sample - Android
30-
androidx-core = "1.15.0"
30+
androidx-core = "1.16.0"
3131
androidx-activity-compose = "1.10.1"
3232

33-
androidx-appcompat = "1.7.0"
34-
androidx-espresso-core = "3.6.1"
33+
androidx-appcompat = "1.7.1"
34+
androidx-espresso-core = "3.7.0"
3535
androidx-material = "1.12.0"
36-
androidx-test-junit = "1.2.1"
36+
androidx-test-junit = "1.3.0"
3737

3838
[libraries]
3939
sqlite-jdbc = { module = "org.xerial:sqlite-jdbc", version.ref = "sqliteJdbc" }

demos/supabase-todolist/shared/src/commonMain/kotlin/com/powersync/demos/powersync/Todo.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ import kotlinx.coroutines.flow.Flow
1111
import kotlinx.coroutines.flow.MutableStateFlow
1212
import kotlinx.coroutines.flow.StateFlow
1313
import kotlinx.coroutines.launch
14-
import kotlinx.datetime.Clock
14+
import kotlin.time.Clock
15+
import kotlin.time.ExperimentalTime
1516

17+
@OptIn(ExperimentalTime::class)
1618
internal class Todo(
1719
private val db: PowerSyncDatabase,
1820
private val userId: String?

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ kotest = "5.9.1"
2626

2727
sqlDelight = "2.1.0"
2828
stately = "2.1.0"
29-
supabase = "3.2.0"
29+
supabase = "3.2.2"
3030
junit = "4.13.2"
3131

3232
compose = "1.6.11"

0 commit comments

Comments
 (0)