android - How to implement ids.xml file as it shown in Google Developers guide? -


i trying upload libgdx game google play store although took mine 3 days develop game unable setup google play services 1 week now. first of please excuse ignorance don't understand modify code section. don't think didn't search yet again couldn't understand these:

1) open res/values/ids.xml , replace placeholder ids. if creating android game scratch, need create file first.

a) specify application id in app_id resource.

b) specify each achievement id created earlier in corresponding achievement_* resource.

c) specify each leaderboard id created earlier in corresponding leaderboard_* resource.

2) open androidmanifest.xml , enter package name in package attribute of <manifest> element. if creating android game scratch, make sure add following code inside <application> element:

 <meta-data android:name="com.google.android.gms.games.app_id"         android:value="@string/app_id" />    <meta-data android:name="com.google.android.gms.version"        android:value="@integer/google_play_services_version"/> 

firstly, created ids.xml file however, placeholders id's should replace? there no such thing that.

secondly game doesn't have id. app_id resource should specify? going specify it? <item name="app_id" type="id"/>

thirdly, game maybe simple there's no achievement nor leader board. have add these things don't know @ all?

lastly, android:value="@string/app_id" gives error. because unable create ids.xml file or have add strings value?

i started developing apps android. question easy shouldn't ask @ first place. believe if me fantastic guide people started developing games. appreciated. many in advance!

i think following wrong guide in setting google play services. guide on setting google play services. doing above guide creating games using play services api creating games, since mentioned have developed game don't need , need set google play services.


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -