Realm on Android doesn\'t support model inheritance/polymorphism.
So is there any way to share fields on Android? We have 5 models that all share the same synchroniz
If you use Kotlin, sharing the fields via an interface becomes even more trivial:
interface PersonBase { var name: String? var salary: Int }
Then
class Person: RealmObject(), PersonBase { }