I want to save data to the Realm database:
Realm realm = Realm.getDefaultInstance(); realm.beginTransaction(); realm.insertOrUpdate(user); realm.cancelTransaction(); I get the error: java.lang.IllegalStateException: Call Realm.init (Context) before calling this method
What's wrong? How to fix?