Google Games APIs requires games_lite function

后端 未结 3 536
逝去的感伤
逝去的感伤 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:54

    True path is requestScopes(Games.SCOPE_GAMES_LITE):

    GoogleSignInOptions gso = new GoogleSignInOptions
        .Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
        .requestScopes(Games.SCOPE_GAMES_LITE)
        .requestEmail()
        .build();
    

提交回复
热议问题