Skip to content
This repository has been archived by the owner on Apr 25, 2022. It is now read-only.

Commit

Permalink
Make @Api definition consistent across classes
Browse files Browse the repository at this point in the history
  • Loading branch information
danholevoet committed Oct 9, 2013
1 parent 1fc30eb commit 119fed1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/com/google/devrel/samples/ttt/spi/BoardV1.java
Expand Up @@ -28,7 +28,9 @@
*/
@Api(
name = "tictactoe",
version = "v1"
version = "v1",
clientIds = {Ids.WEB_CLIENT_ID, Ids.ANDROID_CLIENT_ID, Ids.IOS_CLIENT_ID},
audiences = {Ids.ANDROID_AUDIENCE}
)
public class BoardV1 {
public static final char X = 'X';
Expand Down

0 comments on commit 119fed1

Please sign in to comment.