I want to pass a realm object from one activity to another. e.g.
Intent intent = new Intent(MainActivity.this, Second.class); intent.putExtra(\"Student\", s
Realm currently doesn't support parsing RealmObjects across Intents natively. So you have 2 options :
Send some identifier instead and requery for the object on the other side.
Use a 3rd party library like Parceler. You can see how here: https://realm.io/docs/java/latest/#parceler