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?

1 answer 1

Initialize Realm before working with it.

 Realm.init(Context); Realm realm = Realm.getDefaultInstance(); realm.beginTransaction(); realm.insertOrUpdate(user); realm.cancelTransaction();