i'm trying to pass exist object between two activities but it does not work , here is my code(it crushing in start(activity with the intent that i give him), and my class implement seriazable.
Intent intentSecond = new Intent(this,ThirdActivity.class);
intentSecond.putExtra("game",game);
startActivity(intentSecond);
}