1

I want to use two different GAME ID in the same app.
Today the APP_ID is part the the Manifest.

Is there a way to set 2 GAME ID in the same app?

Thanks, Adrian.

4

1 回答 1

0

我不认为这是可能的。发布的 GamesClient 类包含一个 getAppId() 调用,但不包含相应的 setAppId。所以我认为你坚持在清单中可以做的事情:

<meta-data android:name="com.google.android.gms.games.APP_ID" android:value="@string/google_app_id" />

这意味着每个 apk 一个,而且只有一个游戏。当然,这确实反映了设置说明:

https://developers.google.com/games/services/console/enabling

当然,您可以为每个游戏使用不同的 apk 文件,并在运行时从一个到另一个调用,从用户的角度来看,它看起来像是一个应用程序中的多个游戏。

于 2013-08-04T11:33:45.597 回答