realm-kotlin
realm-kotlin copied to clipboard
Kotlin Multiplatform and Android SDK for the Realm Mobile Database: Build Better Apps Faster.
Ordering is not respected when calling `first` on a query. It looks like a c-api issue, see https://github.com/realm/realm-core/issues/5720 Closes https://github.com/realm/realm-kotlin/issues/953
This PR is just to experiment with compiling the project with Kotlin 1.7.10
Running detekt and ktlint was causing the compiler plugin to trigger a build of the native code due to the way the dependency was set up. Adding an option that...
Closes #878 _Draft, more information coming_ **TODO:** * [ ] Parallize builds. * [ ] Be able to build only artifacts required for a specific host machine (Linux, Windows, Android,...
This PR makes our internal `freeze` calls a no-op when running with Kotlin's new experimental memory model. This way we avoid freezing coroutine primitive to support Coroutine 1.6.0's new _freeze...
Adding https://github.com/Kotlin/binary-compatibility-validator to ensure that we track public API updates. Only works for `android` and `jvm`. According to https://github.com/Kotlin/binary-compatibility-validator#workflow changes to API will be verified by the normal `check` commands,...
building the sample app now throws, this PR adds a step to catch it on CI ``` he /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld command returned non-zero exit code: 1. output: ld: warning: ignoring file...
`RealmReference` introduced a cycle in the references, which seems to cause GC to fail deallocation the Realm and the RealmReference on native. This draft PR is just my experiments of...