-
Notifications
You must be signed in to change notification settings - Fork 6
Update Kotlin and core extension #79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@stevensJourney I'm not sure what to do about the compiler errors with XCode 26. It complains about the Since we can't mark |
We don't actually use the public class SwiftConnector : PowerSyncBackendConnector() {
override suspend fun fetchCredentials(): PowerSyncCredentials? {
}
// Have Swift SDK overide this
public suspend fun performUpload() {
}
override suspend fun uploadData(database: PowerSyncDatabase) {
performUpload()
}
} |
Sounds good, I'll open a Kotlin PR for this 👍 |
b225d63
to
c00168b
Compare
Release notes for the core extension: https://github.com/powersync-ja/powersync-sqlite-core/releases/tag/v0.4.6
This also prepares the adoption of a Kotlin SDK update to fix XCode 26 compatibility (powersync-ja/powersync-kotlin#260).
It also adds the
getCrudTransactions
API we've recently added to our other SDKs.