Google Games APIs requires games_lite function

后端 未结 3 529
逝去的感伤
逝去的感伤 2021-01-22 12:28

I work with Google Play Games Services. I took the code from the official example. Try with API 27 and with API 17.

All works only under one account (owner Google Develo

3条回答
  •  难免孤独
    2021-01-22 12:55

    Following this Google Game Doc should be enough: https://developers.google.com/games/services/android/signin

    You should use:

    GoogleSignInOptions gso = new GoogleSignInOptions
       .Builder(GoogleSignInOptions.DEFAULT_GAMES_SIGN_IN)
       .requestEmail()
       .build();
    

提交回复
热议问题