summaryrefslogtreecommitdiffstats
path: root/docs/html/jd_extras.js
blob: f26b747bdd2c0a823a8da32c4a03447c7f3b6b5c (plain)
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
/* 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":"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 Google Play for Education",
    "summary": "Google Play for Education is a destination where schools can find great, teacher-approved, educational apps and videos on Play Store. Teachers can filter content by subject matter, grade and other criteria. Bulk purchase and instant distribution let educators bring your apps directly to classrooms and schools.",
    "keywords": [],
    "type": "youtube",
    "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": "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 for Android",
    "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": ""
  },
]);