Christian Melchior

Results 173 issues of Christian Melchior

I have attempted to use Arrow Meta in a Kotlin Multiplatform project but have run into problems on almost all targets besides JVM. I will not rule out I am...

bug

With Realm JS and Java .NET already on Github actions, we should migrate as well in order to share resources and knowledge + it will increase our capability to parallelize...

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...

cla: yes

Closes #878 _Draft, more information coming_ **TODO:** * [ ] Parallize builds. * [ ] Be able to build only artifacts required for a specific host machine (Linux, Windows, Android,...

cla: yes

Similar to the ideas expressed here: https://github.com/realm/realm-java/issues/5426 and as exposed by Cocoa here: https://github.com/realm/realm-swift/pull/7375 Projections would decouple the model classes (Database Entity) from how the data is being used in...

Similar to https://www.mongodb.com/docs/realm/sdk/java/advanced-guides/testing/ we should provide guidance for testing Realm Kotlin in combination with common test frameworks, especially Roboletric. Since Realm Kotlin has support for running directly on the JVM,...

Similar to Realm Java, we should add support for mapping inverse relationships. The Java annotation of `@LinkingObjects` seem fine for this. ``` class Dog : RealmObject { var name: String...

This method is generally unsafe when working with data from Realm as it assume strings are zero-terminated, which is not the case for Realm data. See e.g. https://medium.com/@vanniktech/writing-your-first-ktlint-rule-5a1707f4ca5b Instead we...

In order to bring down build times on CI we need to add support for building and testing the library in parallel. Some first steps seems to be: - [...