https://developers.google.com/games/services/android/init上的Google文档说
您的游戏必须按顺序引用GoogleApiClient对象
对Play游戏服务进行任何API调用。在其
活动的生命周期,您的游戏可以检索GoogleApiClient
在onCreate()之后的任何时间通过调用getApiClient()获得对象。对于
例:
Games.Leaderboards.submitScore(getApiClient(),LB_ID,12345);
最初,页面还显示:
BaseGameActivity类包装了GoogleApiClient,从而降低了与Google Play服务器建立连接以及管理用户登录的复杂性。
但是,在getApiClient()
或BaseGameActivity
中找不到GameHelper
。它在哪里?
最佳答案
BaseGameActivity
是围绕GamesClient
的包装类,自2014年2月7日起已弃用。
您可以将BaseGameActivity
与GamesClient
或GoogleApiClient
一起使用。
我认为文档尚未完成。是昨天
要使用GoogleApiClient
,请参阅
https://developers.google.com/games/services/training/signin#signing_the_player_in_at_startup