see:
- https://developers.google.com/games/services/
- https://developer.android.com/google/play-services/setup.html
ja:
- Google Developer Consoleでプロジェクトの登録を行う
- リーダーボードや実績の作成を行う
- res/values/ids.xmlを修正して、2.で得られたIDを記載する
- project.propertiesを修正して、google-play-services_libへの相対パスを定義する
- libs/processing-core.jar.dummyにダミーファイルが配置してあるので、processing-core.jarと置換する
- 以下を実行する:
$ cd /path/to/android-sdk/extras/google/google_play_services/libproject/google-play-services_lib
$ android update project --target <API level> --path .
$ cd /path/to/processing-google-play-game-services-sample
$ android update project --target <API level> --path .
$ ant debug
$ adb install -r bin/AndroidTest-debug.apk
en:
- Set up the project in Google Developer Console
- Create leaderboards/achievements
- Modify res/values/ids.xml and place your IDs
- Modify project.properties and define the relative path to google-play-services_lib
- Replace libs/processing-core.jar.dummy with your processing-core.jar
- Execute:
$ cd /path/to/android-sdk/extras/google/google_play_services/libproject/google-play-services_lib
$ android update project --target <API level> --path .
$ cd /path/to/processing-google-play-game-services-sample
$ android update project --target <API level> --path .
$ ant debug
$ adb install -r bin/AndroidTest-debug.apk
Copyright (c) 2015 Yuki Morohoshi
Released under the MIT license