Skip to content

Instantly share code, notes, and snippets.

@MaryKuz
Created March 27, 2019 09:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MaryKuz/1bcef33f1f9406e47fee0a2767f375df to your computer and use it in GitHub Desktop.
Save MaryKuz/1bcef33f1f9406e47fee0a2767f375df to your computer and use it in GitHub Desktop.
Initialize Realm in Activity
public class MyActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Realm realm = Realm.getDefaultInstance();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment