Google Games APIs requires games_lite function

后端 未结 3 504
逝去的感伤
逝去的感伤 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 13:03

    I had the same issue.

    In my case, it happened when I added a new developer in my google console.
    When some changes are made in the console, even though google gives us a green flag instantly, it is taking some time to get activated. My problem got solved without me doing anything but to wait a couple of hrs.

    Note that as per Developer's Blog,

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

    is sufficient for Games Lite scope.

    Note: This is as per 14th November 2018

提交回复
热议问题