I'm doing an little game application on Android. My main activity extends BaseGameActivy so it is connecting to google play automatically when I open the apps. I'm trying to display the 'Connecting' pop-up menu on the top of the activity and it doesn't work. The google docs says
You can customize how the Google Play Games 'Connecting' pop-up is displayed during sign-in >by using setShowConnectingPopup().
I tried this line in my 'onCreate' in the main activity:
Games.GamesOptions.builder().setShowConnectingPopup(true, Gravity.TOP);
but it still doesn't work.