1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
|
/* Metadata represendations of resources that are outside of the autogenerated
local resource lists, or that override local resource representations.
Resources listed here are referenced from sitemap sections and collections,
matched by url string if there is no resource existing in ALL_RESOURCES.
Currently, these articles can override only the generated resources
in DISTRIBUTE_RESOURCES. A representation defined here will not be applied
when a collection or section specifies a url that's not in DISTRIBUTE_RESOURCEs.
Also
So if a section url refers to a static doc that's
not in a distribute section, you need to create an item for
it in this file. Fix is to compare across
ALL_RESOURCES_BY_URL. */
DISTRIBUTE_RESOURCES = DISTRIBUTE_RESOURCES.concat([
{
"title":"Quizlet Developer Story",
"titleFriendly":"",
"summary":"Quizlet is an extremely popular online learning tool for students. See how they optimized for the classroom with Android and the power of Google Play for Education.",
"url":"https://www.youtube.com/watch?v=Idu7VcTTXfk",
"group":"",
"keywords": [],
"tags": [
"#gpfe",
"#googleplay"
],
"image":"http://i1.ytimg.com/vi/Idu7VcTTXfk/maxresdefault.jpg",
"type":"video"
},
{
"title":"Whats New in Google Play",
"titleFriendly":"",
"summary":"Learn about the vision and philosophy behind Google Play for Education",
"url":"https://www.youtube.com/watch?v=IKhU180eJMo",
"group":"",
"keywords": [],
"tags": [
"#gpfe",
"#googleplay"
],
"image":"http://i1.ytimg.com/vi/IKhU180eJMo/maxresdefault.jpg",
"type":"video"
},
{
"title":"ClassDojo Developer Story",
"titleFriendly":"",
"summary":"ClassDojo is a classroom tool that helps teachers improve behavior in their classrooms quickly and easily. See how they optimized for the classroom with Android and the power of Google Play for Education.",
"url":"https://www.youtube.com/watch?v=iokH4SAIfRw",
"group":"",
"keywords": [],
"tags": [
"#gpfe",
"#googleplay"
],
"image":"http://i1.ytimg.com/vi/iokH4SAIfRw/maxresdefault.jpg",
"type":"video"
},
{
"title":"Plan for Success",
"titleFriendly":"",
"summary":"5 tips from developers on creating great EDU apps.",
"url":"https://www.youtube.com/watch?v=Eh2adsAyTKc",
"group":"",
"keywords": [],
"tags": [
"#gpfe",
"#googleplay"
],
"image":"http://i1.ytimg.com/vi/Eh2adsAyTKc/maxresdefault.jpg",
"type":"video"
},
{
"title":"Optimizing Apps for Education",
"titleFriendly":"",
"summary":"Learn how to optimize your app for teachers and students.",
"url":"https://www.youtube.com/watch?v=_AZ6UcPz-_g",
"group":"",
"keywords": [],
"tags": [
"#gpfe",
"#googleplay"
],
"image":"http://i1.ytimg.com/vi/_AZ6UcPz-_g/maxresdefault.jpg",
"type":"video"
},
{
"title":"Ideas and Tools for Building Innovative Education Apps",
"titleFriendly":"",
"summary":"Are you hungry to build an awesome app for education but don't quite know where to start? Come hear about apps that teachers want, and the APIs you're going to need to build them! In particular, we'll talk about app ideas that combine APIs for Google Drive, Google Login, Android Single Task Mode and more to build transformative Educational apps that will delight educators and kids in and out of the classroom.",
"url":"https://www.youtube.com/watch?v=iulXz8QTD1g",
"group":"",
"keywords": [],
"tags": [
"#gpfe",
"#googleplay"
],
"image":"http://i1.ytimg.com/vi/iulXz8QTD1g/maxresdefault.jpg",
"type":"video"
},
{
"title":"Developer Registration",
"titleFriendly":"",
"summary":"Additional information about the registration process.",
"url":"https://support.google.com/googleplay/android-developer/answer/113468",
"group":"",
"keywords": [],
"tags": [],
"image":"images/play_dev.jpg",
"type":"google"
},
{
"title": "Google Play Distribution and Seller Countries",
"titleFriendly":"",
"summary": "List of countries and territories where you can distribute your apps in Google Play.",
"url":"https://support.google.com/googleplay/android-developer/answer/138294",
"group":"",
"keywords": [],
"tags": [],
"image":"images/play_dev.jpg",
"type":"google"
},
{
"title":"Google Play Content Policies",
"titleFriendly":"",
"summary":"Details on policies relating to your developer account and app distribution is governed.",
"url":"https://support.google.com/googleplay/android-developer/topic/3453577",
"group":"",
"keywords": [],
"tags": ["#developersupport"],
"image":"images/play_dev.jpg",
"type":"google"
},
{
"lang": "en",
"group": "",
"tags": ["#developersupport #termsandpolicies"],
"url": "https://support.google.com/googleplay/android-developer/answer/4407611",
"timestamp": 1194884220000,
"image": 'images/play_dev.jpg',
"title": "Google Play Terms and Policies",
"summary": "Developer terms and policies that apply when you distribute apps in Google Play.",
"keywords": [],
"type": "distribute",
"titleFriendly": ""
},
{
"title":"Google Play Policy Center",
"titleFriendly":"",
"summary":"A central resource for you to learn about Google Play policies and guidelines.",
"url":"https://support.google.com/googleplay/android-developer/answer/4430948",
"group":"",
"keywords": [],
"tags": [],
"image":"http://storage.googleapis.com/support-kms-prod/SNP_712EA2784949DDF085C46E3BE7B1DC618A09_4389397_en_v0",
"type":"google"
},
{
"title":"Developer Help Center",
"titleFriendly":"",
"summary":"Complete details on getting started, publishing, troubleshooting, and more.",
"url":"https://support.google.com/googleplay/android-developer",
"group":"",
"keywords": [],
"tags": [],
"image":"images/play_dev.jpg",
"type":"google"
},
{
"title":"Google for Education",
"titleFriendly":"",
"summary":"Find out more about how Google can support your work with apps and tablets.",
"url":"http://www.google.com/edu/tablets/",
"group":"",
"keywords": [],
"tags": [],
"image":"distribute/images/gp-edu-apps-image.jpg",
"type":"google"
},
{
"title":"Keeping Your App Responsive",
"titleFriendly":"",
"summary":"This document describes how the Android system determines whether an application is not responding and provides guidelines for ensuring that your application stays responsive.",
"url":"training/articles/perf-anr.html",
"group":"",
"keywords": [],
"tags": [],
"image":"",
"type":"google"
},
{
"title":"Google Play Game Services",
"titleFriendly":"",
"summary":"Tools to offer a better game experience.",
"url":"google/play-services/games.html",
"group":"",
"keywords": [],
"tags": [],
"image":"",
"type":"google"
},
{
"lang": "en",
"group": "",
"tags": [
"versions", "blog", "googleplay"
],
"url": "http://android-developers.blogspot.com/",
"timestamp": 1004884220000,
"image": "images/blog.jpg",
"title": "Android Developers Blog",
"summary": "Follow the latest news on Android design, development, and distribution.",
"keywords": [],
"type": "blog",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://android-developers.blogspot.com/2011/11/making-android-games-that-play-nice.html",
"timestamp": 1194884220000,
"image": null,
"title": "Making Android Apps that Play Nice",
"summary": "Audio lifecycle and expected audio behaviors for Android apps.",
"keywords": [],
"type": "blog",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://android-developers.blogspot.com/2010/07/multithreading-for-performance.html",
"timestamp": 1194884220000,
"image": null,
"title": "Multithreading for Performance",
"summary": "Ways to improve performance through multi-threading.",
"keywords": [],
"type": "blog",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://play.google.com/about/developer-content-policy.html",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Developer Program Policies",
"summary": "Guidelines acceptable content in Google Play. Please read and understand the policies before publishing.",
"keywords": [],
"type": "google",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://support.google.com/googleplay/android-developer/answer/188189",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Rating your application content for Google Play",
"summary": "How to choose the appropriate content ratings level for your apps.",
"keywords": [],
"type": "support",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://android-developers.blogspot.com/2011/10/android-market-featured-image.html",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Google Play Featured Image Guidelines",
"summary": "How to create attractive, effective Featured Images for your apps.",
"keywords": [],
"type": "support",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://support.google.com/googleplay/android-developer/answer/113477",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Supporting your users",
"summary": "Options for supporting users.",
"keywords": [],
"type": "support",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "guide/practices/screens_support.html#ConfigurationExamples",
"timestamp": 1194884220000,
"image": null,
"title": "Configuration examples",
"summary": "How to declare layouts and other resources for specific screen sizes.",
"keywords": [],
"type": "design",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "training/design-navigation/multiple-sizes.html",
"timestamp": 1194884220000,
"image": null,
"title": "Planning for Multiple Touchscreen Sizes",
"summary": "",
"keywords": [],
"type": "design",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "training/multiscreen/index.html",
"timestamp": 1194884220000,
"image": null,
"title": "Designing for Multiple Screens",
"summary": "Designing an intuitive, effective navigation for tablets and other devices.",
"keywords": [],
"type": "design",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "guide/topics/resources/providing-resources.html",
"timestamp": 1194884220000,
"image": null,
"title": "Providing Resources",
"summary": "Layouts and drawable resources for specific ranges of device screens.",
"keywords": [],
"type": "design",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "training/basics/supporting-devices/screens.html",
"timestamp": 1194884220000,
"image": null,
"title": "Supporting Different Screens",
"summary": "Optimizing the user experience for different screen sizes and densities.",
"keywords": [],
"type": "design",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "guide/topics/appwidgets/index.html#MetaData",
"timestamp": 1194884220000,
"image": null,
"title": "Adding the AppWidgetProviderInfo Metadata",
"summary": "How to set the height and width dimensions of a widget.",
"keywords": [],
"type": "design",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "guide/topics/manifest/uses-sdk-element.html#ApiLevels",
"timestamp": 1194884220000,
"image": null,
"title": "Android API Levels",
"summary": "Introduction to API levels and how they relate to compatibility.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "guide/practices/screens_support.html#DeclaringScreenSizeSupport",
"timestamp": 1194884220000,
"image": null,
"title": "Declaring screen size support",
"summary": "How to declare support for screen sizes in your app\'s manifest.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "guide/topics/manifest/uses-feature-element.html#testing",
"timestamp": 1194884220000,
"image": null,
"title": "Checking for hardware feature requirements",
"summary": "Determining an app’s hardware and software requirements.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://play.google.com/apps/publish/",
"timestamp": 1194884220000,
"image": null,
"title": "Google Play Developer Console",
"summary": "The tools console for publishing your app.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://youtu.be/SkHHPf3EdzE",
"timestamp": 1194884220000,
"image": "http://i1.ytimg.com/vi/SkHHPf3EdzE/maxresdefault.jpg",
"title": "Level Up Your Android Game",
"summary": "Learn how to take your game to the next level on Google Play.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://developers.google.com/+/mobile/android/share/interactive-post",
"timestamp": 1194884220000,
"image": 'images/google/gps-googleplus.png',
"title": "Sharing interactive posts to Google+ from your Android app",
"summary": "Interactive posts provide an easy and prominent way to allow users to share your site or app with their friends and invite them to take a specific action.",
"keywords": ["Interactive", "Google+"],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://play.google.com/about/developer-distribution-agreement.html",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Developer Distribution Agreement",
"summary": "Terms for distributing and selling apps and in-app products in Google Play.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://support.google.com/googleplay/android-developer/answer/113417",
"timestamp": 1194884220000,
"image": null,
"title": "Inappropriate content in comments and applications",
"summary": "More details on what content is appropriate.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://support.google.com/legal/troubleshooter/1114905",
"timestamp": 1194884220000,
"image": null,
"title": "Removing content from Google",
"summary": "Find how how to request the removal of content that infringes on your trademark.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://play.google.com/about/developer-distribution-agreement-addendum.html",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Google Play for Education Addendum",
"summary": "Review the education-specific requirements.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://android-developers.blogspot.com/2013/03/native-rtl-support-in-android-42.html",
"timestamp": null,
"image": null,
"title": "Native RTL Support in Android 4.2",
"summary": "Blog post that explains how to support RTL in your UI.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "guide/topics/resources/string-resource.html#Plurals",
"timestamp": 1194884220000,
"image": null,
"title": "Quantity Strings (Plurals)",
"summary": "How to work with string plurals according to rules of grammar in a given locale.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "reference/java/util/Locale.html",
"timestamp": 1194884220000,
"image": null,
"title": "Locale",
"summary": "Determine what CLDR data or version of the Unicode spec a particular Android platform version uses.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "guide/topics/resources/string-resource.html",
"timestamp": 1194884220000,
"image": null,
"title": "String Resources",
"summary": "Explains how to use string resources in your UI.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "distribute/tools/localization-checklist.html#strings",
"timestamp": 1194884220000,
"image": null,
"title": "Manage strings for localization",
"summary": "Guidance on having your strings translation ready.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "tools/publishing/publishing_overview.html",
"timestamp": 1194884220000,
"image": null,
"title": "General Publishing Overview",
"summary": "Start here for an overview of publishing options for Android apps.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "tools/publishing/preparing.html",
"timestamp": 1194884220000,
"image": null,
"title": "Preparing for Release",
"summary": "Developer documentation on how to build the signed, release-ready APK. This process is the same for all Android apps.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "distribute/googleplay/policies/index.html",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Google Play Policies and Guidelines",
"summary": "An overview of Google Play policies for spam, intellectual property, and ads, with examples of common problems.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://support.google.com/googleplay/android-developer/topic/2364761",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Policy and Best Practices",
"summary": "Help Center document describing various content policies and processes.",
"keywords": [],
"type": "distribute",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "google/play/expansion-files.html",
"timestamp": 1194884220000,
"image": null,
"title": "APK Expansion Files",
"summary": "Developer documentation describing APK Expansion Files and how to support them in your app.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "tools/help/proguard.html",
"timestamp": 1194884220000,
"image": null,
"title": "ProGuard",
"summary": "Developer documentation describing how to use ProGuard to shrink, optimize, and obfuscate your code prior to release.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"title":"Dashboards",
"titleFriendly":"",
"summary":"This page provides information about the relative number of devices that share a certain characteristic, such as Android version or screen size. This information may help you prioritize efforts for supporting different devices by revealing which devices…",
"url":"about/dashboards/index.html",
"group":"",
"keywords": ["android","dashboard","platforms","versions"],
"tags": ["#ecosystem","#versions","#whatsnew"],
"image":"http://chart.googleapis.com/chart?chl=GL%201.1%20only%7CGL%202.0%7CGL%203.0&chf=bg%2Cs%2C00000000&chd=t%3A0.1%2C93.5%2C6.4&chco=c4df9b%2C6fad0c&chs=400x250&cht=p",
"lang":"en",
"type":"about"
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://developers.google.com/wallet/instant-buy/",
"timestamp": 1194884220000,
"image": "distribute/images/payment-method.jpg",
"title": "Google Wallet Instant Buy APIs",
"summary": "Developer documentation describing Instant Buy and how to support it in your apps.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://support.google.com/googleplay/android-developer/answer/1169947",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Selling Apps in Multiple Currencies",
"summary": "Help Center document describing how pricing works in Google Play.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://support.google.com/googleplay/android-developer/answer/138412",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Prices and supported currencies",
"summary": "Help Center document listing supported currencies for pricing your apps.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://support.google.com/googleplay/android-developer/answer/112622",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Transaction Fees",
"summary": "Help Center document describing transaction fees for priced apps and in-app products.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://support.google.com/googleplay/android-developer/answer/138000",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Specifying tax rates",
"summary": "Help Center document describing how to set tax rates for different countries.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "guide/topics/resources/localization.html",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Localizing with Resources",
"summary": "Developer guide to localizing resources in your app.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://support.google.com/googleplay/android-developer/answer/113475",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Category types",
"summary": "Help Center document listing available categories for apps.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://support.google.com/googleplay/android-developer/answer/113476",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Updates",
"summary": "Requirements for app updates in Google Play.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://support.google.com/googleplay/android-developer/answer/1153479",
"timestamp": 1194884220000,
"image": null,
"title": "In-app Billing",
"summary": "Help Center document describing how to correctly set up In-app Billing.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"#gpfe",
"#googleplay"
],
"url": "http://youtu.be/vzvpcEffvaE",
"timestamp": 1383243492000,
"image": "http://i1.ytimg.com/vi/vzvpcEffvaE/maxresdefault.jpg",
"title": "Introducing Tablets with Google Play for Education",
"summary": "Schools in Hillsborough, New Jersey were among the first to try out Nexus 7 tablets with Google Play for Education. See the difference it made for students, teachers, and administrators.",
"keywords": [],
"type": "video",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"#engagement",
],
"url": "http://www.youtube.com/yt/dev/",
"timestamp": 1383243492000,
"image": "http://www.youtube.com/yt/dev/media/images/yt-dev-home-hero.jpg",
"title": "YouTube for Developers",
"summary": "The YouTube APIs and Tools enable you to integrate YouTube's video content and functionality into your website, app, or device.",
"keywords": [],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"#engagement",
],
"url": "http://www.google.com/analytics/mobile/",
"timestamp": 1383243492000,
"image": "http://www.google.com//analytics/images/heros/mobile-index.jpg",
"title": "Google Mobile App Analytics",
"summary": "Mobile App Analytics measures what matters most at all key stages: from first discovery and download to in-app purchases. ",
"keywords": ["analytics,user behavior"],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"#engagement",
],
"url": "https://developers.google.com/app-indexing/",
"timestamp": 1383243492000,
"image": "https://developers.google.com/app-indexing/images/allthecooks_srp.png",
"title": "Sign Up for App Indexing",
"summary": "Google is working with app developers and webmasters to index the content of apps and relate them to websites. When relevant, Google Search results on Android will include deep links to apps.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"#gcm",
],
"url": "http://www.youtube.com/watch?v=y76rjidm8cU",
"timestamp": 1383243492000,
"image": "http://1.bp.blogspot.com/-IF-1-1kA0sg/UYwTidxdi3I/AAAAAAAAAEU/ellLeQ-E1vs/s800/google-io-lockup-2.png",
"title": "Google Cloud Messaging at I/O 2013",
"summary": "Google Cloud Messaging allows your services to efficiently send data to applications on Android devices. See what's new, and learn how to use GCM to make your apps more efficient.",
"keywords": ["gcm"],
"type": "youtube",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"#googleplus",
],
"url": "https://developers.google.com/+/mobile/android/people",
"timestamp": 1383243492000,
"image": "images/google/gps-googleplus.png",
"title": "Sign Up for App Indexing",
"summary": "After you let users sign in with Google, you can access their age range, language, public profile information, and people that they have circled.",
"keywords": ["googleplus"],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"#gcm",
],
"url": "http://developer.chrome.com/apps/cloudMessagingV2",
"timestamp": 1383243492000,
"image": "images/kk-chromium-icon.png",
"title": "Google Cloud Messaging for Chrome",
"summary": "Google Cloud Messaging for Chrome (GCM) is a service for signed-in Chrome users that helps developers send message data from servers to their Chrome apps and extensions.",
"keywords": ["gcm"],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"#sdkupdates"
],
"url": "http://android-developers.blogspot.com/2013/07/making-beautiful-android-app-icons.html",
"timestamp": 1194884220000,
"image": null,
"title": "Make Beautiful Android App Icons",
"summary": "Follow these in-depth launcher icon tips on the Android Developers blog.",
"keywords": [],
"type": "blog",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"#sdkupdates"
],
"url": "http://android-developers.blogspot.com/2012/12/localize-your-promotional-graphics-on.html",
"timestamp": 1194884220000,
"image": null,
"title": "Localize Your Promotional Graphics",
"summary": "Learn how to capitalise on international audiences.",
"keywords": [],
"type": "blog",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [
"#sdkupdates"
],
"url": "http://android-developers.blogspot.com/2013/10/making-your-app-content-more-accessible.html",
"timestamp": 1194884220000,
"image": null,
"title": "Make your App Content more Accessible with App Linking",
"summary": "About using search and deep linking to get more users.",
"keywords": [],
"type": "blog",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://developers.google.com/+/mobile/android/share/interactive-post",
"timestamp": 1194884220000,
"image": 'images/google/gps-googleplus.png',
"title": "Sharing interactive posts to Google+ from your Android app",
"summary": "Interactive posts provide an easy and prominent way to allow users to share your site or app with their friends and invite them to take a specific action.",
"keywords": ["Interactive", "Google+"],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://support.google.com/googleplay/android-developer/answer/2528691",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "How to add multiple user accounts to your Developer Console for testing and more.",
"summary": "",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://developers.google.com/+/mobile/android/share/deep-link",
"timestamp": 1194884220000,
"image": null,
"title": "Adding deep linking to Google+ posts shared from your Android app",
"summary": "",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "google/play/licensing/index.html",
"timestamp": 1194884220000,
"image": null,
"title": "Application Licensing",
"summary": "Information on the features of Google Play to protect your apps’ licences.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "design/style/writing.html",
"timestamp": 1194884220000,
"image": null,
"title": "Writing Style",
"summary": "Android Design guidelines for voice and style in your UI.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://en.wikipedia.org/wiki/XLIFF",
"timestamp": 1194884220000,
"image": null,
"title": "XML Localisation Interchange File Format (XLIFF)",
"summary": "Background information on XLIFF.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://support.google.com/googleplay/android-developer/answer/1078870",
"timestamp": 1194884220000,
"image": "images/play_dev.jpg",
"title": "Graphic Assets for your Application",
"summary": "Details about the graphics you can add to your product listing.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://support.google.com/payments/answer/2741495",
"timestamp": null,
"image": null,
"title": "Issuing Refunds",
"summary": "Help Center document describing how to issue refunds.",
"keywords": [],
"type": "guide",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://android-developers.blogspot.com/2013/11/bring-your-apps-into-classroom-with.html",
"timestamp": null,
"image": "distribute/images/gp-edu-apps-image.jpg",
"title": "Google play for education",
"summary": " ",
"keywords": [],
"type": "distribute",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": ["localization", "pricing", "developer support"],
"url": "https://support.google.com/googleplay/android-developer/table/3541286",
"timestamp": null,
"image": "images/play_dev.jpg",
"title": "Supported locations for distributing your apps in Google Play",
"summary": "Countries and regions where you can distribute your app in Google Play.",
"keywords": [],
"type": "distribute",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": ["games", "localization", "quality"],
"url": "http://www.youtube.com/watch?v=SkHHPf3EdzE",
"timestamp": null,
"image": "https://developers.google.com/apps/images/io_2013/google-io-logo.png",
"title": "Level Up Your Android Game",
"summary": "Learn how to take your game to the next level in this Google I/O session.",
"keywords": [],
"type": "distribute",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": ["support"],
"url": "https://support.google.com/groups/answer/46601",
"timestamp": null,
"image": null,
"title": "Google Groups",
"summary": "Create a group for your community.",
"keywords": [],
"type": "distribute",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": ["support"],
"url": "https://support.google.com/plus/topic/2888488",
"timestamp": null,
"image": null,
"title": "Google+ Communities",
"summary": "Host a Google+ community for testers or users.",
"keywords": [],
"type": "distribute",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": ["monetize", "ads"],
"url": "http://www.google.com/ads/admob/#subid=us-en-et-dac",
"timestamp": null,
"image": "distribute/images/advertising.png",
"title": "AdMob",
"summary": "Make money by connecting with over a million Google advertisers all over the world, so your revenue scales with your app.",
"keywords": ["ads"],
"type": "distribute",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": ["monetize", "ads"],
"url": "http://www.google.com/doubleclick/publishers/small-business/index.html",
"timestamp": null,
"image": "http://www.google.com/doubleclick/publishers/small-business/images/define_ad.png",
"title": "DoubleClick for Publishers",
"summary": "A free ad management solution that helps growing publishers sell, schedule, deliver, and measure all of their digital ad inventory.",
"keywords": ["ads"],
"type": "distribute",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": ["monetize", "ads"],
"url": "http://support.google.com/googleplay/android-developer/topic/2985714",
"timestamp": null,
"image": "http://storage.googleapis.com/support-kms-prod/SNP_712EA2784949DDF085C46E3BE7B1DC618A09_4389397_en_v0",
"title": "Policy Center: Ads",
"summary": "Introduction to ads and system interference policies in Google Play",
"keywords": ["ads"],
"type": "distribute",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": ["monetize", "giftcards"],
"url": "https://play.google.com/about/giftcards/",
"timestamp": null,
"image": "images/gp-balance.png",
"title": "Google Play Gift Cards",
"summary": "Buy Google Play gift cards online or at a variety of retail stores.",
"keywords": ["gift card"],
"type": "distribute",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": ["monetize", "paymentmethods"],
"url": "https://support.google.com/googleplay/answer/2651410",
"timestamp": null,
"image": "images/play_dev.jpg",
"title": "Google Play Accepted Payment Methods",
"summary": "Support details on the payment methods supported in Google Play.",
"keywords": ["gift card"],
"type": "distribute",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": ["plus", "social"],
"url": "https://plus.google.com/+AndroidDevelopers/",
"timestamp": null,
"image": "images/plus.jpg",
"title": "+Android Developers",
"summary": "Sharing news, ideas, and techniques for success.",
"keywords": ["+AndroidDevelopers"],
"type": "Google+",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": ["plus", "social"],
"url": "http://plus.google.com/+GooglePlay",
"timestamp": null,
"image": "https://lh4.googleusercontent.com/-IKezweZlcXI/AAAAAAAAAAI/AAAAAAABOvg/uK8Z0jekVE4/s120-c/photo.jpg",
"title": "+Google Play",
"summary": "News and discussion about Google Play, apps, and other content in Google+.",
"keywords": ["+GooglePlay"],
"type": "Google+",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": ["support", "android"],
"url": "support.html",
"timestamp": null,
"image": null,
"title": "Developer Support",
"summary": "Links to community and support resources for Android developers.",
"keywords": ["support"],
"type": "Google+",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": ["analytics"],
"url": "https://developers.google.com/analytics/devguides/collection/android/",
"timestamp": null,
"image": "https://developers.google.com/analytics/images/home/gear-logo.png",
"title": "Google Mobile App Analytics SDK",
"summary": "The Google Analytics for Mobile Apps SDKs make it easy for you to implement Google Analytics in your mobile application.",
"keywords": ["analytics, user behavior"],
"type": "sdk",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://developers.google.com/edu/guidelines",
"timestamp": null,
"image": "http://developer.android.com/distribute/images/edu-guidelines.jpg",
"title": "Education Guidelines",
"summary": "These guidelines and requirements help you develop great apps for students, which offer compelling content and an intuitive user experience on Android tablets.",
"keywords": [],
"type": "",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://developers.google.com/edu/faq",
"timestamp": null,
"image": "http://developer.android.com/distribute/images/gpfe-faq.jpg",
"title": "Education FAQ",
"summary": "Answers to common questions you might have about Google Play for Education.",
"keywords": [],
"type": "",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://developers.google.com/edu/",
"timestamp": null,
"image": "https://developers.google.com/edu/images/home-android.png",
"title": "Chrome Apps in Google Play for Education",
"summary": "Find out more about Chrome apps in Google Play for Education.",
"keywords": [],
"type": "",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "https://www.google.com/edu/tablets/#tablets-family",
"timestamp": null,
"image": "https://www.google.com/edu/images/tablets/big-tablet.png",
"title": "Google Play for Education Tablets",
"summary": "Google Play for Education leverages a diverse set up tablets approved for the classroom which may help inform you how to build educational apps.",
"keywords": [],
"type": "",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://storage.googleapis.com/androiddevelopers/shareables/stories/Glu_Deerhunter2014_gpgs.pdf",
"timestamp": null,
"image": "http://storage.googleapis.com/androiddevelopers/shareables/stories/Glu_Deerhunter2014_gpgs.png",
"title": "Deer Hunter 2014 by Glu — Sign-in",
"summary": "Glu finds that Google Play Game Services helps improve the user experience which leads to increased player happiness. They also find that Play Games Services signed in users tend to play longer and have a higher lifetime value.",
"keywords": ["stories"],
"type": "Case Study Deck",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://storage.googleapis.com/androiddevelopers/shareables/stories/ConcreteSoftware_PBABowling_gpgs.pdf",
"timestamp": null,
"image": "http://storage.googleapis.com/androiddevelopers/shareables/stories/ConcreteSoftware_PBABowling_gpgs.png",
"title": "PBA® Bowling Challenge by Concrete Software — Quests",
"summary": "Concrete Software finds that Google Play Game Services' quests are a great way to create new content for users that leads to higher engagement.",
"keywords": ["stories"],
"type": "Case Study Deck",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://storage.googleapis.com/androiddevelopers/shareables/stories/Dragonplay_DragonplaySlots_gpgs.pdf",
"timestamp": null,
"image": "http://storage.googleapis.com/androiddevelopers/shareables/stories/Dragonplay_DragonplaySlots_gpgs.png",
"title": "Dragonplay Slots by Dragonplay — Sign-in",
"summary": "Dragonplay finds that players who sign in with Google Play Games services tend to be high quality users who were highly engaged. They also tend to be easier to convert to paying users.",
"keywords": ["stories"],
"type": "Case Study Deck",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://storage.googleapis.com/androiddevelopers/shareables/stories/Gameloft_Asphalt8_gpgs.pdf",
"timestamp": null,
"image": "http://storage.googleapis.com/androiddevelopers/shareables/stories/Gameloft_Asphalt8_gpgs.png",
"title": "Asphalt 8 by Gameloft — Friends invitations",
"summary": "Gameloft finds that Google Play Game Services users are more engaged than the average Android user and more likely to convert to paying players.",
"keywords": ["stories"],
"type": "Case Study Deck",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://storage.googleapis.com/androiddevelopers/shareables/stories/Glu_EternityWarriors3_gpgs.pdf",
"timestamp": null,
"image": "http://storage.googleapis.com/androiddevelopers/shareables/stories/Glu_EternityWarriors3_gpgs.png",
"title": "Eternity Warriors 3 by Glu — Gifting",
"summary": "Glu finds that Google Play Game Services gifting outperforms other implementations (including those with incentives) because of its seamless flow and consistent performance.",
"keywords": ["stories"],
"type": "Case Study Deck",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://storage.googleapis.com/androiddevelopers/shareables/stories/HotheadGames_RivalsatWar_gpgs.pdf",
"timestamp": null,
"image": "http://storage.googleapis.com/androiddevelopers/shareables/stories/HotheadGames_RivalsatWar_gpgs.jpg",
"title": "Rivals at War: Firefight by Hothead Games — Leaderboards",
"summary": "Hothead Games is planning to include Google Play Game Services features in all their games going forwards after seeing that players that signed in with Play Games Services tend to show higher retention and a higher average revenue.",
"keywords": ["stories"],
"type": "Case Study Deck",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://storage.googleapis.com/androiddevelopers/shareables/stories/TMSOFT_Compulsive_gpgs.pdf",
"timestamp": null,
"image": "http://storage.googleapis.com/androiddevelopers/shareables/stories/TMSOFT_Compulsive_gpgs.png",
"title": "Compulsive by TMSOFT — Cross-platform",
"summary": "TMSOFT finds that users who authenticate with Play Games Services on Android and iOS play Compulsive twice as much and purchase in-app products over four times as much.",
"keywords": ["stories"],
"type": "Case Study Deck",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://storage.googleapis.com/androiddevelopers/shareables/stories/Noodlecake_SuperStickmanGolf2_gpgs.pdf",
"timestamp": null,
"image": "http://storage.googleapis.com/androiddevelopers/shareables/stories/Noodlecake_SuperStickmanGolf2_gpgs.png",
"title": "Super Stickman Golf 2 by Noodlecake Studios — Multiplayer",
"summary": "Noodlecake Studios finds that Google Play Game Services’ multiplayer feature helps reduce attrition.",
"keywords": ["stories"],
"type": "Case Study Deck",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://storage.googleapis.com/androiddevelopers/shareables/stories/TinyRebel_DoctorWhoLegacy_gpgs.pdf",
"timestamp": null,
"image": "http://storage.googleapis.com/androiddevelopers/shareables/stories/TinyRebelGames_DrWhoLegacy_pgps.png",
"title": "Dr. Doctor Who: Legacy by Tiny Rebel Games — Achievements",
"summary": "After integrating achievements and cloud services from Google Play Game Services, Tiny Rebel Games saw a dramatic increase in daily revenues as a result of an increase in daily installs and an increase in the average revenue per install.",
"keywords": ["stories"],
"type": "Case Study Deck",
"titleFriendly": ""
},
{
"lang": "en",
"group": "",
"tags": [],
"url": "http://storage.googleapis.com/androiddevelopers/shareables/stories/Senri_LeosFortune_gpgs.pdf",
"timestamp": null,
"image": "http://storage.googleapis.com/androiddevelopers/shareables/stories/Senri_LeosFortune_gpgs.png",
"title": "Leo’s Fortune by 1337 & Senri — Saved games",
"summary": "1337 + Senri finds that Google Play Game Services is easy to integrate and provides essential game functions like cloud saved games, achievements and leaderboards which have a very large adoption rate amongst players.",
"keywords": ["stories"],
"type": "Case Study Deck",
"titleFriendly": ""
}
]);
|