我试图授权我的
Android游戏谷歌播放服务,以便能够使用排行榜等.
现在,当点击授权应用程序时,什么都不会发生.在信息页面上,Google告诉我要做以下事情:
我将指定我的应用程序ID,但是我从哪里获得这个“app_id”?和成就id? leaderdboard id?
这个ids.xml应该怎么样?
有任何想法吗?
最佳答案 在“排行榜”或“成就”页面的底部是一个标有“获取资源”的便捷链接.这将打开一个看起来像这样的页面:
<?xml version="1.0" encoding="utf-8"?>
<!--
Google Play game services IDs.
Save this file as res/values/games-ids.xml in your project.
-->
<resources>
<string name="app_id">00000000000</string>
<string name="achievement_xxx">0000000000</string>
<string name="achievement_yyy">0000000000</string>
<string name="leaderboard_xxx">000000000000</string>
</resources>
请注意,您被指示将其放入具有非法名称“games-ids.xml”的文件中. Eclipse不允许你在文件名中使用破折号,所以要么把它放在你的’strings.xml’文件中,要么按照你的计划使用’ids.xml’作为文件名,我发现两者都有效.