I'm updating Realm an iOS Swift app from 5.5.1
to 10.12.0
using Cocoa Pods.
This update have a Breaking Change public typealias User = RLMUser
which conflicts with my own public final class User: Object
. Refactoring to another name makes my app to crashes as assert(object.realm != nil)
when reading this user class.
Is it because I've renamed my class and the realm database is expecting the old name from it's database? Or should I do some sort of merge when app start?
Or should I make my own branch changing the 'typealias User = RLMUser` in the Pod?