realm-kotlin
realm-kotlin copied to clipboard
Kotlin Multiplatform and Android SDK for the Realm Mobile Database: Build Better Apps Faster.
It would be great if the following works: ```kt class TestModel( var firstName: String, var lastName: String, var age: Int ) : RealmObject ``` This was already mentioned in other...
Currently, the `/benchmarks` module has to run manually, but this should run as part of CI. Requirements: - [ ] Reproducible results with a predefined margin of error. This probably...
From Realm Java we had this issue: https://github.com/realm/realm-java/issues/4786 Which is about object level notifications only triggering if top-level properties are modified, but not if nested objects are modified. For RealmResults...
There is something wrong with the exit status of the `'Tests Android Sample App'` step of our Jenkins build. In this build the sample app tests failed but I had...
Similar to Realm Java we should expose MongoDB Functions in the API: https://docs.mongodb.com/realm-sdks/java/latest/io/realm/mongodb/functions/Functions.html ```java interface io.realm.mongodb.functions.Functions { val user: User val app: App val defaultCodecRegistry: CodecRegistry suspend fun callFunction(name: String,...
Currently in the Java SDK, and all other SDK's. We have a single `Realm` which is used for both synced and local databases. The reason for this is probably mostly...
From https://github.com/realm/realm-kotlin/issues/713 (Christian) We need to figure out how to split cinterop so it supports both base and sync builds. Instead of right now where sync native code is getting...
Typing this in the Evaluate Expression window in the debugger in Android studio `aRealmObject.someRealmList.first()` throws a NoSuchElementException: List is empty, when the realm list really isn't empty. Android Studio Bumblebee...
During debugging an issue, I notice that calling `RealmConfiguration.toString()` just returns something like `io.realm.internal.RealmConfigurationImpl@2e397e1f`. We should implement a proper toString method similar to what we have in Java.