Google Play 服务和 Google 游戏
Google Play services and Google Games
我想问一下 Google 从开发者的角度来看,游戏有什么好处。如果我像这样连接 viac GoogleApiClient
:
googleApiClient = new GoogleApiClient.Builder(this)
.addApi(Games.API).addScope(Games.SCOPE_GAMES)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();
我连接的是 Google Play 服务还是 Google 游戏。如果我连接到 Google 游戏,我不需要安装 google 游戏服务?因为它在旧设备上吃掉了很多space。
此 GoogleApiClient
用作 Google Play 服务集成的主要入口点(as in google documentation explained)
Google 播放服务
这些服务的作用是将您的应用与 google Play 商店连接以检查更新。 Play Services 库用于 android 应用程序项目以具有 类,这使我们能够使用 google 地图和其他 google+ API。更多信息 here
Google 玩游戏服务
引用自维基百科 here Google Play Game Services can be used by application developers to allow a more competitive and social experience through the use of leaderboards, both public and between friends, achievements and multiplayer sessions. Saved Games API is available to quickly sync game saves on Google's cloud infrastructure as well.
可以说play服务是用来保存游戏分数的,可以让其他玩过你游戏的玩家记分牌。这样可以提供更丰富的游戏体验。
我想问一下 Google 从开发者的角度来看,游戏有什么好处。如果我像这样连接 viac GoogleApiClient
:
googleApiClient = new GoogleApiClient.Builder(this)
.addApi(Games.API).addScope(Games.SCOPE_GAMES)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();
我连接的是 Google Play 服务还是 Google 游戏。如果我连接到 Google 游戏,我不需要安装 google 游戏服务?因为它在旧设备上吃掉了很多space。
此 GoogleApiClient
用作 Google Play 服务集成的主要入口点(as in google documentation explained)
Google 播放服务
这些服务的作用是将您的应用与 google Play 商店连接以检查更新。 Play Services 库用于 android 应用程序项目以具有 类,这使我们能够使用 google 地图和其他 google+ API。更多信息 here
Google 玩游戏服务
引用自维基百科 here Google Play Game Services can be used by application developers to allow a more competitive and social experience through the use of leaderboards, both public and between friends, achievements and multiplayer sessions. Saved Games API is available to quickly sync game saves on Google's cloud infrastructure as well.
可以说play服务是用来保存游戏分数的,可以让其他玩过你游戏的玩家记分牌。这样可以提供更丰富的游戏体验。