realm-kotlin icon indicating copy to clipboard operation
realm-kotlin copied to clipboard

Kotlin Multiplatform and Android SDK for the Realm Mobile Database: Build Better Apps Faster.

Results 315 realm-kotlin issues
Sort by recently updated
recently updated
newest added

This just adds a test to highlight that the current C-API implementation doesn't take filtering of the result into account when it does a subquery on the result.

cla: yes

Currently suspendable write looks like that: suspend fun write(block: MutableRealm.() -> R): R Could it be possible to add another write() that would accept suspedable block? eg: suspend fun write(block:suspend...

O-Community

We should move to proper hierarchical project setup as the new default and we could clean up our source set configuration and take advantage of the new cinterop commonizer to...

Hi, when using generics on an interface/class that extends RealmObject you get an error. Not sure if it is kotlin or realm though. `class BaseEntity : RealmObject` ``` org.jetbrains.kotlin.backend.common.CompilationException: Back-end:...

O-Community

Ran into this issue a while back: ``` This was just building from test from a clean checkout. Building packages result in a cmake error :confused: > Task :cinterop:capiIosArm64 --...

Add support for ConnectionListeners similar to Realm Java: ```java enum class ConnectionState { DISCONNECTED, CONNECTING, CONNECTED } typealias ConnectionListener = (oldState: ConnectionState, newState: ConnectionState) -> Unit class SyncSession { fun...

The API should look something like this: ``` interface RealmAny { val type: Type fun asInt(): Int fun asRealmObject(clazz: KClass): T fun isNull(): boolean // etc. enum class Type {...

As AutomaticSchemaMigration is available for data migration from old schema to new one there is still no documentation for it. It's possible to understand what to do with source code...

O-Community