File tree Expand file tree Collapse file tree
internal/sqlite3mcandroid Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6161 ./gradlew \
6262 --no-configuration-cache \
6363 -PhasPrebuiltAssets=true \
64- -PGITHUB_PUBLISH_TOKEN="${{ secrets.GITHUB_TOKEN }}" \
64+ -PsigningInMemoryKey="${{ secrets.SIGNING_KEY }}" \
65+ -PsigningInMemoryKeyId="${{ secrets.SIGNING_KEY_ID }}" \
66+ -PsigningInMemoryKeyPassword="${{ secrets.SIGNING_PASSWORD }}" \
67+ -PcentralPortal.username="${{secrets.SONATYPE_USERNAME}}" \
68+ -PcentralPortal.password="${{secrets.SONATYPE_PASSWORD}}" \
69+ -Ppowersync.binaries.allPlatforms="true" \
70+ publishAllPublicationsToSonatypeLocalRepository
71+
72+ ./gradlew \
73+ --no-configuration-cache \
74+ -PhasPrebuiltAssets=true \
6575 -PsigningInMemoryKey="${{ secrets.SIGNING_KEY }}" \
6676 -PsigningInMemoryKeyId="${{ secrets.SIGNING_KEY_ID }}" \
6777 -PsigningInMemoryKeyPassword="${{ secrets.SIGNING_PASSWORD }}" \
Original file line number Diff line number Diff line change 11# Changelog
22
3- ## 1.10.3
3+ ## 1.10.4
4+
5+ (Note: Version ` 1.10.3 ` has been skipped due to publishing issues requiring another release)
46
57- __ Important__ : Due to changes in our build setup, the library can no longer determine
68 whether it is running in debug mode on Android. This changes the default log severity
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ development=true
1919RELEASE_SIGNING_ENABLED =true
2020# Library config
2121GROUP =com.powersync
22- LIBRARY_VERSION =1.10.3
22+ LIBRARY_VERSION =1.10.4
2323GITHUB_REPO =https://github.com/powersync-ja/powersync-kotlin.git
2424# POM
2525POM_URL =https://github.com/powersync-ja/powersync-kotlin/
Original file line number Diff line number Diff line change @@ -64,3 +64,10 @@ tasks.withType(ExternalNativeBuildJsonTask::class.java).configureEach {
6464 // runs before CMake is invoked.
6565 dependsOn(generateCmake)
6666}
67+
68+ tasks.withType< com.android.build.gradle.tasks.JavaDocGenerationTask > {
69+ // The Android Gradle plugin ships with a very old version of Dokka that is enabled by default and doesn't support
70+ // running on Java 25.
71+ // We don't even have any Kotlin sources here, so we can skip the Android documentation task.
72+ enabled = false
73+ }
You can’t perform that action at this time.
0 commit comments