Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.6.1

* Fix `dlopen failed: library "libpowersync.so.so" not found` errors on Android.

## 1.6.0

* Remove internal SQLDelight and SQLiter dependencies.
Expand Down
6 changes: 1 addition & 5 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ kotlin {
androidMain {
dependsOn(commonJava)
dependencies {
api(libs.powersync.sqlite.core.android)
implementation(libs.ktor.client.okhttp)
implementation(libs.androidx.sqlite.bundled)
}
Expand Down Expand Up @@ -255,11 +256,6 @@ android {
consumerProguardFiles("proguard-rules.pro")
}

sourceSets {
getByName("main") {
jniLibs.srcDirs("src/androidMain/jni", "src/main/jni", "src/jniLibs")
}
}
ndkVersion = "27.1.12297006"
}

Expand Down
2 changes: 2 additions & 0 deletions core/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Temporary workaround for https://issuetracker.google.com/issues/442489402
-keepclasseswithmembers class androidx.sqlite.driver.bundled.** { native <methods>; }
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ development=true
RELEASE_SIGNING_ENABLED=true
# Library config
GROUP=com.powersync
LIBRARY_VERSION=1.6.0
LIBRARY_VERSION=1.6.1
GITHUB_REPO=https://github.com/powersync-ja/powersync-kotlin.git
# POM
POM_URL=https://github.com/powersync-ja/powersync-kotlin/
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ compose = "1.8.2" # This is for the multiplatform compose
androidCompose = "2025.08.00"
compose-preview = "1.9.0"
compose-lifecycle = "2.9.2"
androidxSqlite = "2.6.0-rc02"
androidxSqlite = "2.6.0"
androidxSplashscreen = "1.0.1"
room = "2.8.0-rc02"
room = "2.8.0"
sqldelight = "2.1.0"

# plugins
Expand Down
Loading