realm-java
realm-java copied to clipboard
Realm is a mobile database: a replacement for SQLite & ORMs
- [x] Migrating the Realm accessor Transformer to use the new AHP transformer API - [x] Migrated Gradle plugin from Groovy to Kotlin. - [ ] Re-writing the internal object...
#### Goal Open a realm database #### Actual Results In a few devices, Realm cannot initialize the file and it throws an exception: ``` Fatal Exception: io.realm.exceptions.RealmFileException: Unable to open...
### How frequently does the bug occur? All the time ### Description Android Studio just updated their stable IDE version. I'm using the recommended Gradle tooling version that came with...
### Problem I have UUID as primary key in my class I want to make this query: UUID[] values = new UUID[]{ UUID.fromString(key1) }; query.in("uuid_field" , values); exception will thrown...
### How frequently does the bug occur? Seen once ### Description Android app, realm plugin 10.9.0, 10.11.0 Iterating the database: ``` try(@NonNull Realm database = Realm.getDefaultInstance()) { @NonNull final RealmResults...
This PR enables the new client reset modes in Flexible sync: - Discard unsynced changes - Recover unsynced changes - Recover or discard unsynced changes
This PR adds support for the two new client reset modes, `RecoverUnsycedChanges` and `RecoverOrDiscardUnsyncedChanges` in **partition** sync Realms. `RecoverUnsycedChanges` would try to recover the client unsynced changes. It fallbacks to...
### How frequently does the bug occur? All the time ### Description The app crashes when the query is run. We have several pojos with field `public String desc;`. ###...
### How frequently does the bug occur? Sometimes ### Description In our Android mobile app, we have observed this crash error for some of our users since. The pattern is...