Hi I've been trying to get this to work in my game but it won't work. I can get lives key to reappear in the second activity but the gold key won't work. Here is my first activity.
Intent intent = new Intent(getApplicationContext(),EndActivity.class);
intent.putExtra("lives", lives);
intent.putExtra("gold", gold);
startActivity(intent);
My 2nd Activity
Intent extras = getIntent();
int gold = extras.getExtras().getInt("gold", 0);
int lives = extras.getExtras().getInt("lives", 0);
am i missing anything? I've check my spelling. I tried to see if only 1 key is allowed in Intent. I've checked other questions but I can't find any that helps.