Authorize Android game - Where is the identifier application?

I am trying to enable my Android game for Google gaming services in order to be able to use leaderboards etc.

Now, when you click on an authorized application, nothing will happen. On the info page, Google tells me to do the following things:

enter image description here

I will indicate my application identifier, but where can I get this "app_id" from? And the identifier of achievement? id of the master module?

What does this ids.xml look like?

Any ideas?

+4
source share
2 answers

"" "" " ". , :

<?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" , , , .

+2

[ Google] [1]

[1]: http://play.google.com/apps/publish " ", , .

0

Source: https://habr.com/ru/post/1530019/


All Articles