Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public Realm getRealm(){
  2. RealmConfiguration config = new RealmConfiguration.Builder()
  3. .schemaVersion(0)
  4. .deleteRealmIfMigrationNeeded()
  5. .build();
  6. return Realm.getInstance(config); //getting error at this line
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement