I'm making a library that uses realm to save data. I set up modules (one for the library and one for the app) and I'm using the realms with the different configs with the modules.
Does the user have to know my RealmObject
's names to avoid calling its classes the same way? If I do, Realm crashes. Or is there a way to avoid the crash even if the user calls its models the same as my library's? If so, how?
I've tried with different Module configurations but without luck.