Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b9552d3

Browse files
committedMar 12, 2025·
Update Android-only demo too
1 parent 6a2b99b commit b9552d3

File tree

5 files changed

+16
-13
lines changed

5 files changed

+16
-13
lines changed
 

‎demos/android-supabase-todolist/app/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ plugins {
44
alias(libs.plugins.android.application)
55
alias(libs.plugins.jetbrains.kotlin.android)
66
alias(libs.plugins.sqldelight)
7+
alias(libs.plugins.compose.compiler)
78
}
89

910
val localProperties = Properties()
@@ -18,7 +19,7 @@ fun getLocalProperty(key: String, defaultValue: String): String {
1819

1920
android {
2021
namespace = "com.powersync.androidexample"
21-
compileSdk = 34
22+
compileSdk = 35
2223

2324
buildFeatures {
2425
buildConfig = true
@@ -27,7 +28,7 @@ android {
2728
defaultConfig {
2829
applicationId = "com.powersync.androidexample"
2930
minSdk = 24
30-
targetSdk = 34
31+
targetSdk = 35
3132
versionCode = 1
3233
versionName = "1.0"
3334

‎demos/android-supabase-todolist/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
plugins {
33
alias(libs.plugins.android.application) apply false
44
alias(libs.plugins.jetbrains.kotlin.android) apply false
5+
alias(libs.plugins.compose.compiler) apply false
56
}

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

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[versions]
2-
agp = "8.5.1"
2+
agp = "8.9.0"
33
coreSplashscreen = "1.0.1"
4-
kotlin = "1.9.0"
5-
coreKtx = "1.13.1"
4+
kotlin = "2.1.10"
5+
coreKtx = "1.15.0"
66
junit = "4.13.2"
77
junitVersion = "1.2.1"
88
espressoCore = "3.6.1"
9-
lifecycleRuntimeKtx = "2.6.1"
10-
activityCompose = "1.9.2"
11-
composeBom = "2024.04.01"
12-
materialIconsExtended = "1.7.2"
9+
lifecycleRuntimeKtx = "2.8.7"
10+
activityCompose = "1.10.1"
11+
composeBom = "2025.02.00"
12+
materialIconsExtended = "1.7.8"
1313
uuid = "0.8.2"
14-
kermit = "2.0.4"
14+
kermit = "2.0.5"
1515
sqldelight= "2.0.2"
1616

1717
[libraries]
@@ -38,3 +38,4 @@ kermit = { module = "co.touchlab:kermit", version.ref = "kermit" }
3838
android-application = { id = "com.android.application", version.ref = "agp" }
3939
jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
4040
sqldelight = { id = "app.cash.sqldelight", version.ref = "sqldelight" }
41+
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Thu Sep 19 13:08:23 SAST 2024
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

‎gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[versions]
22
## SDK Versions
33
android-minSdk = "24"
4-
android-targetSdk = "34"
5-
android-compileSdk = "34"
4+
android-targetSdk = "35"
5+
android-compileSdk = "35"
66
configurationAnnotations = "0.9.5"
77
java = "17"
88
idea = "243.22562.218" # Meerkat | 2024.3.1 (see https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html)

0 commit comments

Comments
 (0)
Please sign in to comment.