Your app is crashing at:
welcomePlayer.setText("Welcome Back, " + String.valueOf(mPlayer.getName(this)) + " !");
because mPlayer=null.
You forgot to initialize Player mPlayer in your PlayGame Activity.
mPlayer = new Player(context,"");
Your app is crashing at:
welcomePlayer.setText("Welcome Back, " + String.valueOf(mPlayer.getName(this)) + " !");
because mPlayer=null.
You forgot to initialize Player mPlayer in your PlayGame Activity.
mPlayer = new Player(context,"");