This is my code:
boolean startGameBoolean; Bundle extras = getIntent().getExtras(); extras.getInt(\"startGameBoolean\"); if (startGameBoolean = true){ counte
if (startGameBoolean = true){
Should be..
if (startGameBoolean == true){
..or better still..
if (startGameBoolean){