Skip to content

Instantly share code, notes, and snippets.

@oznus
Created March 21, 2015 17:08
Show Gist options
  • Save oznus/6271201b66c582dcabe5 to your computer and use it in GitHub Desktop.
Save oznus/6271201b66c582dcabe5 to your computer and use it in GitHub Desktop.
Saving Realm object
User user = new User();
user.setName("Justin");
user.setSurname("Timberlake");
Realm realm = Realm.getInstance(getActivity());
realm.beginTransaction();
realm.copyToRealm(user);
realm.commitTransaction();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment