Skip to content

Commit 96a694f

Browse files
committed
updating README.md
removed FAQ; is outdated Change-Id: I5efd7d9279f3b378e8a7961a65d21f0271520cbb
1 parent 2c42aad commit 96a694f

File tree

2 files changed

+17
-83
lines changed

2 files changed

+17
-83
lines changed

FAQ.txt

Lines changed: 0 additions & 46 deletions
This file was deleted.

README.md

Lines changed: 17 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -6,46 +6,27 @@ Copyright (C) 2014 Google Inc.
66

77
These are the Android samples for Google Play game services.
88

9-
* **BasicSamples** - a set of basic samples, including a convenience library (BaseGameUtils):
9+
* **BasicSamples** - a set of basic samples:
1010

11-
* **BaseGameUtils**. Utilities used on all samples, which you can use in your projects too. This is not a stand-alone sample, it's a library project.
12-
13-
* **ButtonClicker2000**. Represents the new generation in modern button-clicking excitement. A simple multiplayer game sample that shows how to set up the Google Play real-time multiplayer API, invite friends, automatch, accept invitations, use the waiting room UI, send and receive messages and other multiplayer topics.
11+
* **ButtonClicker**. Represents the new generation in modern button-clicking excitement. A simple multiplayer game sample that shows how to set up the Google Play real-time multiplayer API, invite friends, automatch, accept invitations, use the waiting room UI, send and receive messages and other multiplayer topics.
1412

1513
* **CollectAllTheStars2**. Demonstrates how to use the Snapshots feature to save game data. The sample signs the user in, synchronizes their data from a named Snapshot, then updates the UI to reflect the game state saved in the Snapshot.
1614

17-
* **TrivialQuest2**. Demonstrates how to use the Events and Quests features of Google Play Services. The sample presents a sign in button and four buttons to simulate killing monsters in-game. When you click the buttons, an event is
18-
created and sent to Google Play Games to track what the player is doing in game.
19-
20-
* **TrivialQuest**. The simplest possible single-player game. Shows how to sign in and how to unlock one achievement. Sign-in and click the button to win the game. Are you ready for this epic adventure?
21-
22-
* **TypeANumber**. Shows leaderboards and achievements. In this exciting game, you type the score you think you deserve. But wait! There is a twist. If you are playing in easy mode, you get the score you requested. However, if you are playing in hard mode, you only get half! (tough game, we know).
23-
24-
* **SkeletonTbmp** A trivial turn-based-multiplayer game. In this thrilling game, you can invite many friends, then send a shared gamestate string back and forth until someone finishes, cancels, or the second-to-last player leaves.
25-
26-
* **BeGenerous** Send gifts and game requests to other players of BeGenerous.
27-
28-
* **SavedGames**. Demonstrates the used of Saved Games (Snapshots) feature and how to migrate data from the older Cloud Save (AppState) service to the newer service. The sample allows the user to save/load data from both Cloud Save and Saved Games.
15+
* **TypeANumber**. Demonstrates how to use leaderboards, achievements and events. In this exciting game, you type the score you think you deserve. But wait! There is a twist. If you are playing in easy mode, you get the score you requested. However, if you are playing in hard mode, you only get half! (tough game, we know).
2916

30-
**Note:** the samples that have corresponding counterparts for iOS and web (particularly, CollectAllTheStars and TypeANumber) are compatible across the platforms. This means that you can play some levels on CollectAllTheStars on your Android device, and then pick up your iOS device and continue where you left off! For TypeANumber, you will see your achievements and leaderboards on all platforms, and progress obtained on one will be reflected on the others.
31-
32-
<h2>Frequently Asked Questions</h2>
33-
34-
If you have questions about the samples (particularly, about *BaseGameActivity* and *GameHelper*), please
35-
take a look at [our FAQ](https://github.com/playgameservices/android-samples/blob/master/FAQ.txt).
17+
* **SkeletonTbmp** A trivial turn-based-multiplayer game. In this thrilling game, you can invite many friends, then send a shared gamestate string back and forth until someone finishes, cancels, or the second-to-last player leaves.
3618

3719
<h2>How to run a sample</h2>
3820

39-
1. Set up the project in Developer Console. For more info:
40-
41-
https://developers.google.com/games/services/console/enabling
42-
43-
Note your package name and the APP ID of the project.
44-
45-
1. Create leaderboards/achievements as appropriate for the sample (see the ones that the sample needs in its res/values/ids.xml). You can do this automatically by clicking the link below for the sample you want to configure:
46-
1. [Type a Number](http://playgameservices.github.io/android-basic-samples/config-magic/index.html?sample=typeanumber)
47-
1. [Trivial Quest](http://playgameservices.github.io/android-basic-samples/config-magic/index.html?sample=trivialquest)
21+
1. Set up the project in the Developer Console by following [these instructions](https://developers.google.com/games/services/console/enabling).
22+
Note your **package name** and the **application ID** of the project!
4823

24+
1. For the **Type a Number sample**, you need to create leaderboards/achievements.
25+
(You can see the ones that the sample needs in its [res/values/ids.xml](BasicSamples/TypeANumber/src/main/res/values/ids.xml) file.)
26+
You can create them two ways:
27+
1. Add them via the [Developer console](https://play.google.com/apps/publish/#GameListPlace).
28+
1. Use [this utility](http://playgameservices.github.io/android-basic-samples/config-magic/index.html?sample=typeanumber), which will automatically create them for you.
29+
4930
<h3>Building using Android Studio...</h3>
5031

5132
1. Open Android Studio and launch the Android SDK manager from it (Tools | Android | SDK Manager)
@@ -60,13 +41,14 @@ take a look at [our FAQ](https://github.com/playgameservices/android-samples/blo
6041

6142
To set up a sample:
6243

63-
1. Change the *application id* in the build.gradle file to your own **package name** (ie - com.example.package.name)
44+
1. Change the *applicationId* in the build.gradle file to your own **package name** (ie - com.example.package.name)
6445
(the same one you registered in Developer Console!). You will have to update
65-
the build.gradle file for each sample you want to run. There is no need to
46+
the build.gradle file for *each* sample you want to run. There is no need to
6647
edit the AndroidManifest.xml file.
6748
1. In the Developer console, select a resource type
6849
(Achievements, Events, Leaderboards) and click "Get Resources". Copy the
6950
contents from the console and replace the contents of res/values/ids.xml.
51+
1. If you are running Android Studio, check the TODO window to see if there are any remaining tasks.
7052
1. Compile and run.
7153

7254
**IMPORTANT**: make sure to sign your apk with the same certificate
@@ -92,11 +74,9 @@ To build the samples after you have applied the changes above, you can use the b
9274

9375
First of all, take a look at our [troubleshooting guide](https://developers.google.com/games/services/android/troubleshooting). Most setup issues can be solved by following this guide.
9476

95-
If your question is not answered by the troubleshooting guide, we encourage you to post your question to [stackoverflow.com](stackoverflow.com). Our team answers questions there reguarly.
96-
97-
*Samples written by [Bruno Oliveira](http://plus.google.com/+BrunoOliveira) with contributions from [Wolff](http://plus.google.com/+WolffDobson).* Feel free to add us to your circles on Google Plus and pester us to fix stuff that's broken or answer a question on stackoverflow :-)
77+
If your question is not answered by the troubleshooting guide, we encourage you to post your question to [stackoverflow.com](https://stackoverflow.com/questions/tagged/google-play-games). Our team answers questions there regularly.
9878

99-
*Samples written by [Bruno Oliveira](http://plus.google.com/+BrunoOliveira).* Feel free to add me to your circles on Google Plus and pester me to fix anything that's broken or answer a question on stackoverflow!
79+
Samples written by [Bruno Oliveira](https://plus.google.com/102451193315916178828) with contributions from [Wolff](http://plus.google.com/+WolffDobson).* Feel free to add us to your circles on Google Plus and pester us to fix stuff that's broken or answer a question on stackoverflow :-)
10080

10181
<h2>Special Thanks</h2>
10282

0 commit comments

Comments
 (0)