Clemente Tort
Clemente Tort
Type adapters allow users to persist their types in Realm by doing some transformation to Realm-supported types. ## Use cases ### Compile time adapter Adapters defined as objects will be...
Core now reports progress estimates during a Download/Upload. This PR adds support for it. The progress estimate is a double ranged between 0 - 1. Depends on https://github.com/realm/realm-core/pull/7124 Closes https://github.com/realm/realm-kotlin/issues/1744
This PR adds some benchmark measurements on opening and closing a Realm with generated classes. Closes https://github.com/realm/realm-kotlin/issues/1521
Add some tests around what is the behavior when downgrading an App metadata schema version. Bumping the metadata schema version by modifying it and then opening it with an App.
Currently, we use the `VersionTracker` to close realms whose `RealmReference`s that have been claimed by the GC. This has two effects: first versions will not be reclaimed until there is...
#### Expected results Get a change notification on an object collection after manually recovering some data during a discard local changes client reset. #### Actual Results We don't get a...
This ticket tracks any issues and developments about the SDK being unable to resolve the native library during the initialization phase. The issue occurs when an exception is thrown while...
Offline mode sample is contained within the PLE sample, but the READMEs where not clear about it. This PR aims to improve the discoverability of such sample.
closes https://github.com/realm/realm-kotlin/issues/1691 RealmLog would see the current `level` property deprecated in favor of a setter and getter functions. ```kotlin RealmLog { @Deprecated public var level: LogLevel public fun setLevel(level: LogLevel,...
This PR adds support for sync schema migration. Sync migrations are only triggered when opening the Realm asynchronously. This PR adds this condition to the heuristic that determines whether to...