summaryrefslogtreecommitdiffstats
path: root/docs/html/jd_extras.js
blob: 5dbca75037b3597f62ff4d4aa0afbf02521c2d26 (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
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
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
/* 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([
 /* TODO Remove standard resources from here, such as below
 */
  {
    "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":"What's New in GPFE",
    "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":"Get started with Google Cast",
    "titleFriendly":"",
    "summary":"Build multi-screen experiences, let the user send video and audio content to TVs and speakers.",
    "url":"https://developers.google.com/cast/docs/ux_guidelines",
    "group":"",
    "keywords": ["cast", "chromecast", "video", "audio"],
    "tags": [],
    "image":"images/cards/card-cast_2x.jpg",
    "type":"Guide"
  },
  {
    "title":"Android Sender Applications",
    "titleFriendly":"",
    "summary":"Get an overview of how your Android app can act as a Google Cast sender app.",
    "url":"https://developers.google.com/cast/docs/android_sender",
    "group":"",
    "keywords": ["cast", "sender"],
    "tags": [],
    "image":"images/cards/card-cast_2x.jpg",
    "type":"Guide"
  },
  {
    "title":"Cast sample apps",
    "titleFriendly":"",
    "summary":"Get example Google Cast applications for both senders and receivers.",
    "url":"http://www.github.com/googlecast",
    "group":"",
    "keywords": ["cast", "samples"],
    "tags": [],
    "image":"images/cards/card-cast_2x.jpg",
    "type":"Samples"
  },
  {
    "title":"Get Cardboard",
    "titleFriendly":"",
    "summary":"Get your own Cardboard, today. Buy one from a manufacturer or build your own, and start developing.",
    "url":"https://www.google.com/get/cardboard/get-cardboard/",
    "group":"",
    "keywords": ["carboard","vr"],
    "tags": [],
    "image":"images/cards/card-cardboard_2x.png",
    "type":"Guide"
  },
    {
    "title":"Download the Cardboard SDK",
    "titleFriendly":"",
    "summary":"Grab the Cardboard libraries from GitHub and start creating VR apps in your favorite development environment.",
    "url":"https://developers.google.com/cardboard/android/download",
    "group":"",
    "keywords": ["carboard","vr"],
    "tags": [],
    "image":"images/cards/card-cardboard_2x.png",
    "type":"Guide"
  },
  {
    "title":"Cardboard design guidelines",
    "titleFriendly":"",
    "summary":"Focus on overall usability and avoiding common VR pitfalls while creating an immersive experience of your own.",
    "url":"http://www.google.com/design/spec-vr",
    "group":"",
    "keywords": ["carboard","vr"],
    "tags": [],
    "image":"images/cards/card-cardboard_2x.png",
    "type":"Design"
  },
  {
    "title":"Maps",
    "titleFriendly":"",
    "summary":"Give users the map that more than a billion people use every month.",
    "url":"https://developers.google.com/maps/documentation/android/",
    "group":"",
    "keywords": ["maps"],
    "tags": [],
    "image":"images/google/gps-maps.png",
    "type":"Guide"
  },
    {
    "title":"Places API",
    "titleFriendly":"",
    "summary":"give your users contextual information about where they are, when they’re there.",
    "url":"https://developers.google.com/places/android/",
    "group":"",
    "keywords": ["places","location", "context"],
    "tags": [],
    "image":"images/cards/card-places_2x.png",
    "type":"Guide"
  },
  {
    "title":"GCM Client for Android",
    "titleFriendly":"",
    "summary":"Send push notifications and pubsub from your server to Android devices around the world.",
    "url":"https://developers.google.com/cloud-messaging/android/client",
    "group":"",
    "keywords": ["push","gcm"],
    "tags": [],
    "image":"images/cards/card-google-cloud-messaging_16-9_2x.png",
    "type":"Guide"
  },
  {
    "title":"Google Cloud Messaging",
    "titleFriendly":"",
    "summary":"Learn about GCM and the kinds of services you can offer to users through push notifications",
    "url":"https://developers.google.com/cloud-messaging/gcm",
    "group":"",
    "keywords": ["push","gcm"],
    "tags": [],
    "image":"images/cards/card-google-cloud-messaging_16-9_2x.png",
    "type":"Guide"
  },
  {
    "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":"DesignBytes: Intro To Material Design",
    "titleFriendly":"",
    "summary":"These days, UI designers need to be thinking about phones, tablets, laptops, TVs, smartwatches, and beyond. In this DesignByte we talk about how Google designers have been working on making cross-platform and multi-screen design easier. We wanted to build a design system that felt at home on every screen, from the smallest watch to the largest TV.",
    "url":"http://www.youtube.com/watch?v=p4gmvHyuZzw",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"http://i1.ytimg.com/vi/p4gmvHyuZzw/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"DesignBytes: Paper and Ink: The Materials that Matter",
    "titleFriendly":"",
    "summary":"Join Rich Fulcher to learn about the materials of material design. See how virtual paper and ink form the foundation of your tactile user interface and master the rules that govern their behaviour.",
    "url":"http://www.youtube.com/watch?v=YaG_ljfzeUw",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"http://i1.ytimg.com/vi/YaG_ljfzeUw/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"DesignBytes: Material Design in the Google I/O App",
    "titleFriendly":"",
    "summary":"Roman Nurik shares details on the design process for the Google I/O 2014 app. To check out the app's source code, visit github.com/google/iosched.",
    "url":"http://www.youtube.com/watch?v=XOcCOBe8PTc",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"http://i1.ytimg.com/vi/XOcCOBe8PTc/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Battery Drain and Networking",
    "titleFriendly":"",
    "summary":"Let’s take a moment to make something insanely clear: As far as battery is concerned, NETWORKING is the biggest, baddest, dirtiest offender there is. And optimizing performance here isn’t easy. Since the chip isn’t always awake and draining power, means you can optimize how it wakes up, sends traffic, and saves battery.",
    "url":"http://www.youtube.com/watch?v=fEEulSk1kNY",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"http://i1.ytimg.com/vi/fEEulSk1kNY/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Batching Background Work Until Later",
    "titleFriendly":"",
    "summary":"Yes, your app is special. But when it comes to battery use, sometimes it’s better to be part of the crowd. Why not spread the battery blame around a bit? Ian Ni-Lewis shows you how ridiculously easy it is to go from battery hog to team player in this video.",
    "url":"http://www.youtube.com/watch?v=-3ry8PxcJJA",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"http://i1.ytimg.com/vi/-3ry8PxcJJA/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"The Performance Lifecycle",
    "titleFriendly":"",
    "summary":"Performance problems surface in your application at the least-wanted times (like right before you’re about to ship your first build). But don’t freak out: There’s a simple process that you can follow to help get your performance back under control.",
    "url":"http://www.youtube.com/watch?v=_kKTGK-Cb_4",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"http://i1.ytimg.com/vi/_kKTGK-Cb_4/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Introduction to Android Studio",
    "titleFriendly":"",
    "summary":"Learn why you should migrate your projects to Android Studio now and how it can help you be more productive as a developer. Rich layout editor, handy suggestions and fixes, new Android project view - these are just some of the things you can expect from the IDE, which is built on the successful IntelliJ IDEA.",
    "url":"https://www.youtube.com/watch?v=K2dodTXARqc&list=PLWz5rJ2EKKc8I9gHTMh5yKkwRRGE8BjbQ",
    "group":"",
    "keywords": ["studio", "tools"],
    "tags": [
    ],
    "image":"http://i1.ytimg.com/vi/K2dodTXARqc/maxresdefault.jpg",
    "type":"video"
  },

  {
    "title":"Google Play Services 7.5",
    "titleFriendly":"",
    "summary":"This update brings App Invites, topics to GCM, GCMNetworkManager, Cast Remote Display API, Smart Lock for Passwords, Maps API for Android Wear, Google Fit extensions and more.",
    "url":"https://www.youtube.com/watch?v=M3Udfu6qidk&list=PLWz5rJ2EKKc9Qk1_iCZNbBp6adYnJf9Vf",
    "group":"",
    "keywords": ["google play services"],
    "tags": [
    ],
    "image":"http://i1.ytimg.com/vi/M3Udfu6qidk/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Google Play Services 7.3",
    "titleFriendly":"",
    "summary":"This update brings the ability to connect multiple wearables simultaneously to a single phone. There are also some great new updates to Google Fit, including nutrition types, and to Location.",
    "url":"https://www.youtube.com/watch?v=FOn64iqlphk&list=PLWz5rJ2EKKc9Qk1_iCZNbBp6adYnJf9Vf",
    "group":"",
    "keywords": ["google play services"],
    "tags": [
    ],
    "image":"http://i1.ytimg.com/vi/FOn64iqlphk/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Google Play Services 6.5",
    "titleFriendly":"",
    "summary":"Google Play services 6.5 includes new features in Google Maps, Google Drive and Google Wallet as well as the recently launched Google Fit API. ",
    "url":"https://www.youtube.com/watch?v=fvtMtfCuEpw&list=PLWz5rJ2EKKc9Qk1_iCZNbBp6adYnJf9Vf",
    "group":"",
    "keywords": ["google play services"],
    "tags": [
    ],
    "image":"http://i1.ytimg.com/vi/fvtMtfCuEpw/maxresdefault.jpg",
    "type":"video"
  },
    {
    "title":"Google Play Services 7.0",
    "titleFriendly":"",
    "summary":"Google Play services 7.0 is here! we've added the Places API, made enhancements to Location and Google Fit, and you can also remote control your Android TV through the new Nearby Connections API.",
    "url":"https://www.youtube.com/watch?v=F0Kh_RnSM0w&list=PLWz5rJ2EKKc9Qk1_iCZNbBp6adYnJf9Vf",
    "group":"",
    "keywords": ["google play services"],
    "tags": [
    ],
    "image":"http://i1.ytimg.com/vi/F0Kh_RnSM0w/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Running a Successful Games Business with Google",
    "titleFriendly":"",
    "summary":"Sure, we all want to make the next great gaming masterpiece. But we also want to feed our families and/or dogs. Join Bob Meese from the Google Play team as he gives you some key pointers on how to make sure you're best taking advantage of Google Play and running a successful games business.",
    "url":"http://www.youtube.com/watch?v=tDmnGNkTtlE",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"http://i1.ytimg.com/vi/tDmnGNkTtlE/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Introduction to Android TV",
    "titleFriendly":"",
    "summary":"Android TV brings the Android platform to the living room with rich content and entertaining app experiences. In this video, Timothy introduces the design philosophy and developer components that make building TV experiences easier than ever before.",
    "url":"https://www.youtube.com/watch?v=6K_jxccHv5M&index=1&list=PLOU2XLYxmsILFBfx66ens76VMLMEPJAB0",
    "group":"",
    "keywords": ["tv"],
    "tags": [
    ],
    "image":"http://i1.ytimg.com/vi/6K_jxccHv5M/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Introduction to Android Auto",
    "titleFriendly":"",
    "summary":"Android Auto brings the Android platform to the car in a way that's optimized for the driving experience. It's the same platform you already use for phones, tablets, televisions, wearables, and more. ",
    "url":"https://www.youtube.com/watch?v=ctiaVxgclsg&list=PLWz5rJ2EKKc9BdE_PSLNIGjXXr3h_orXM",
    "group":"",
    "keywords": ["auto"],
    "tags": [
    ],
    "image":"http://i1.ytimg.com/vi/ctiaVxgclsg/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用户发布应用的地区",
    "lang": "zh-cn",
    "titleFriendly":"",
    "summary": "支持向Google Play用户发布应用的国家/地区。",
    "url":"https://support.google.com/googleplay/android-developer/answer/138294?hl=zh-Hans",
    "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":"Google Play应用政策中心",
    "titleFriendly":"",
    "summary":"一个方便你了解Google Play政策和指南的中心资源。",
    "url":"https://support.google.com/googleplay/android-developer/answer/4430948?hl=zh-Hans",
    "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/cards/google-play_2x.png",
    "type":"google"
  },
  {
    "title":"开发者帮助中心",
    "titleFriendly":"",
    "summary":"完整资料帮助开发者新手入手,发布,故障排除,等等",
    "url":"https://support.google.com/googleplay/android-developer?hl=zh-Hans",
    "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": ["games","play games"],
    "tags": [],
    "image":"images/google/gps-play_games_logo.png",
    "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": "zh-cn",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/188189?hl=zh-Hans",
    "timestamp": 1194884220000,
    "image": "images/play_dev.jpg",
    "title": "针对Google Play为你的应用内容分级",
    "summary": "如何为你的应用内容分级。",
    "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": "zh-cn",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/113477?hl=zh-Hans",
    "timestamp": 1194884220000,
    "image": "images/play_dev.jpg",
    "title": "为用户提供支持",
    "summary": "为用户提供支持的各种选择。",
    "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": "zh-cn",
    "group": "",
    "tags": [],
    "url": "https://play.google.com/apps/publish/?hl=zh-Hans",
    "timestamp": 1194884220000,
    "image": null,
    "title": "Google Play 开发者控制台",
    "summary": "发布应用的开发者控制台",
    "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": "zh-cn",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/topic/2364761?hl=zh-Hans",
    "timestamp": 1194884220000,
    "image": "images/play_dev.jpg",
    "title": "政策和最佳做法",
    "summary": "内容政策和流程",
    "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": "",
    "title": "Android Pay 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/1169947?hl=zh-Hans",
    "timestamp": 1194884220000,
    "image": "images/play_dev.jpg",
    "title": "以多种货币销售应用",
    "summary": "如何在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": "zh-cn",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/138412?hl=zh-Hans",
    "timestamp": 1194884220000,
    "image": "images/play_dev.jpg",
    "title": "各国家/地区获许定价范围和货币",
    "summary": "各国家/地区获许定价范围和货币列表",
    "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": "zh-cn",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/112622?hl=zh-Hans",
    "timestamp": 1194884220000,
    "image": "images/play_dev.jpg",
    "title": "交易费用",
    "summary": "销售的应用和应用内产品的交易费。",
    "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": "zh-cn",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/138000?hl=zh-Hans",
    "timestamp": 1194884220000,
    "image": "images/play_dev.jpg",
    "title": "税率",
    "summary": "如何设置不同国家/地区的税率",
    "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": "zh-cn",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/113475?hl=zh-Hans",
    "timestamp": 1194884220000,
    "image": "images/play_dev.jpg",
    "title": "类别",
    "summary": "应用的类别列表。",
    "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": "zh-cn",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/113476?hl=zh-Hans",
    "timestamp": 1194884220000,
    "image": "images/play_dev.jpg",
    "title": "更新应用",
    "summary": "更新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": "zh-cn",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/1153479?hl=zh-Hans",
    "timestamp": 1194884220000,
    "image": null,
    "title": "应用内结算",
    "summary": "如何正确设置应用内商品和订阅结算。",
    "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": "images/cards/analytics-mobile_2x.jpg",
    "title": "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": [
      "#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": [
      "#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://developers.google.com/+/mobile/android/",
    "timestamp": 1194884220000,
    "image": 'images/google/gps-googleplus.png',
    "title": "Google+ Platform",
    "summary": "Find out about features such as interactive posts, Hangouts, accessing basic user details and their social graphs to make your app more personal.",
    "keywords": ["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": "zh-cn",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/1078870?hl=zh-Hans",
    "timestamp": 1194884220000,
    "image": "images/play_dev.jpg",
    "title": "为你的应用的图片资源",
    "summary": "如何在你的应用的商品详情页面上添加图片资源。",
    "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": "zh-cn",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/payments/answer/2741495?hl=zh-Hans",
    "timestamp": null,
    "image": null,
    "title": "退回訂單款項",
    "summary": "如何退还已收取的订单款项。",
    "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": "zh-cn",
    "group": "",
    "tags": ["localization", "pricing", "developer support"],
    "url": "https://support.google.com/googleplay/android-developer/table/3541286?hl=zh-Hans",
    "timestamp": null,
    "image": "images/play_dev.jpg",
    "title": "支持向Google Play用户发布应用的地区",
    "summary": "支持向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/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":"images/play_dev.jpg",
    "title": "Policy Center: Ads",
    "summary": "Introduction to ads and system interference policies in Google Play.",
    "keywords": ["ads"],
    "type": "distribute",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/analytics/answer/2611404",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Create Audience lists in Google Analytics",
    "summary": "Find out how to use your analytics data to discover high value users and create remarketing audiences to use in AdMob.",
    "keywords": ["ads, analytics, monetize"],
    "type": "distribute",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "http://admob.blogspot.com/",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Inside Admob",
    "summary": "Google’s official blog for news, tips, and information on the AdMob developer platform.",
    "keywords": ["ads, analytics, monetize"],
    "type": "distribute",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/admob/answer/3111064",
    "timestamp": null,
    "image": "distribute/images/advertising.jpg",
    "title": "AdMob in-app conversion tracking",
    "summary": "Use in-app conversion tracking to attribute revenue back to your IAP promotion campaigns and determine which ones earn you the most.",
    "keywords": ["ads, analytics, conversions"],
    "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": [],
    "url": "https://developers.google.com/analytics/devguides/collection/android/",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Mobile App Analytics SDK",
    "summary": "Measure everything about your app. Get started with the Google Analytics SDK for Android.",
    "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": "zh-cn",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/edu/guidelines?hl=zh-Hans",
    "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": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "shareables/distribute/play_dev_guide_secrets_en.pdf",
    "timestamp": null,
    "image": "distribute/images/play_dev_guide_b.jpg",
    "title": "The Secrets to App Success on Google Play",
    "summary": "A guide to useful features, tips, and best practices that will help you grow a successful app business on Google Play.",
    "keywords": ["distribute"],
    "type": "PDF DOWNLOAD (11MB)",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "shareables/auto/AndroidAuto-audio-apps.pdf",
    "timestamp": null,
    "image": "auto/images/assets/icons/media_app_playback.png",
    "title": "Android Auto Audio Apps UI Guidelines",
    "summary": "Guidelines for designing audio apps that work with Auto. ",
    "keywords": ["design", "Auto", "Automotive"],
    "type": "Design",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "shareables/auto/AndroidAuto-messaging-apps.pdf",
    "timestamp": null,
    "image": "auto/images/assets/icons/messaging_app_notifications.png",
    "title": "Android Auto Messaging Apps UI Guidelines",
    "summary": "Guidelines for designing messaging apps that work with Auto. ",
    "keywords": ["design", "Auto", "Automotive"],
    "type": "Design",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "shareables/auto/AndroidAuto-custom-colors.pdf",
    "timestamp": null,
    "image": "auto/images/ui/gearhead_generic_UI.png",
    "title": "Android Auto Color Customization UI Guidelines",
    "summary": "Guidelines for color-customizing apps that work with Auto. ",
    "keywords": ["design", "Auto", "Automotive"],
    "type": "Design",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/analytics/solutions/mobile-implementation-guide",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Mobile Analytics Implementation Guide",
    "summary": "Learn how you can implement additional Google Analytics features to better understand your users and their behavior.",
    "keywords": ["analytics", "Play", "users"],
    "type": "guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "http://www.google.com/tagmanager/",
    "timestamp": null,
    "image": "http://www.google.com/tagmanager/images/gtm-hero-illustration-small.png",
    "title": "Google Tag Manager",
    "summary": "Google Tag Manager enables you to change configuration values in your mobile apps using the Google Tag Manager interface, without having to rebuild and resubmit application binaries to app marketplaces.",
    "keywords": ["analytics", "tagmanager"],
    "type": "guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://analyticsacademy.withgoogle.com/course04",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Mobile App Analytics Fundamentals",
    "summary": "This self-paced online course on mobile app measurement shows you how Google Analytics data can help you make your app more discoverable and profitable.",
    "keywords": ["analytics"],
    "type": "Open Source Project",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://github.com/googleanalytics/google-analytics-plugin-for-unity",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Analytics Plugin for Unity",
    "summary": "If you're building games with Unity, you can now implement Analytics once and ship it on multiple platforms automatically.",
    "keywords": ["analytics", "unity"],
    "type": "Open Source Project",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/analytics/devguides/collection/android/v4/enhanced-ecommerce",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "In-App Purchases & Ecommerce",
    "summary": "If your app sells virtual or real goods, ecommerce tracking can help you understand what behaviors lead to purchases.",
    "keywords": ["analytics, ecommerce"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/analytics/answer/1032415",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Goals",
    "summary": "Track important actions in your app as goals and measure performance against your objectives.",
    "keywords": ["analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/analytics/answer/2568874?ref_topic=6012392",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Active Users",
    "summary": "The active user report displays your 1-day, 7-day, 14-day and 30-day trailing active users next to each other, to help you analyze performance over time.",
    "keywords": ["analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/analytics/devguides/collection/android/v4/events",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Events",
    "summary": "Events let you measure granular in-app activities and understand user journeys.",
    "keywords": ["analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/analytics/devguides/collection/android/v4/customdimsmets",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Custom Dimensions",
    "summary": "Custom dimensions enable the association of metadata with hits, users, and sessions in Google Analytics.",
    "keywords": ["analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/analytics/devguides/collection/android/v4/user-id",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "User ID",
    "summary": "The User ID feature enables Google Analytics to measure user activities that span across devices.",
    "keywords": ["analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/analytics/devguides/collection/android/v4/display-features",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Demographic Reporting",
    "summary": "By enabling display features, you can see just how different user segments engage and monetize.",
    "keywords": ["analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/analytics/answer/3123906",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "User Segmentation",
    "summary": "Segments let you compare metrics for different subsets of users to identify trends and opportunities for your apps.",
    "keywords": ["analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/analytics/devguides/collection/android/v4/campaigns",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Campaign Tracking",
    "summary": "Measuring campaigns in Google Analytics enables the attribution of campaigns and traffic sources to user activity within your app.",
    "keywords": ["analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/analytics/answer/2956981",
    "timestamp": null,
    "image": "images/play_dev.jpg",
    "title": "Google Play Integration",
    "summary": "By linking Analytics and the Play Developer Console, you can gain additional insights into the acquisition flow.",
    "keywords": ["play, analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/analytics/answer/1033961",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "AdWords Integration",
    "summary": "Link Analytics and AdWords to see the entire picture of customer behavior, from ad click or impression through your site to conversion. ",
    "keywords": ["adwords, analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/analytics/devguides/collection/android/v4/campaigns#google-play-url-builder",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Campaign URL builder for Google Play",
    "summary": "Easily create your URLs to track install campaigns.",
    "keywords": ["play, analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/tagmanager/answer/6003007",
    "timestamp": null,
    "image": "http://www.google.com/tagmanager/images/gtm-hero-illustration-small.png",
    "title": "In-App A/B Testing",
    "summary": "With content experiments in Google Tag Manager you can test multiple variations of your app to find which works best.",
    "keywords": ["tagmanager"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/analytics/answer/2785577",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Behavior Flow",
    "summary": "The Behavior Flow report visualizes the path users traveled from one Screen or Event to the next. This report can help you discover what content keeps users engaged with your app.",
    "keywords": ["analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/analytics/answer/1151300",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Custom Reports",
    "summary": "Custom Reports let you create your own reports in your Google Analytics account.",
    "keywords": ["analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/analytics/answer/2611268",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Audience Lists & Remarketing",
    "summary": "Remarketing with Google Analytics lets you deliver targeted ads to users who've already been to your site or app. You can even base those ads on the behavior those users displayed during their sessions.",
    "keywords": ["analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/admob/answer/3508177",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "AdMob Integration",
    "summary": "With Google Analytics in AdMob, you can view Google Analytics data for your linked apps from within your AdMob account.",
    "keywords": ["analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/analytics/solutions/mobile-campaign-deep-link",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Deep-Linking",
    "summary": "Google Analytics gives you a full view of how returning users are interacting with your app, for a holistic view beyond the install.",
    "keywords": ["analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/admob/answer/3508177",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "AdMob Integration",
    "summary": "With Google Analytics in AdMob, you can view Google Analytics data for your linked apps from within your AdMob account.",
    "keywords": ["analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/analytics/answer/2568874",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Active User Report",
    "summary": "Active user report displays your 1-day, 7-day, 14-day and 30-day trailing active users next to each other, to help you run benchmark analyses of their performance over time.",
    "keywords": ["analytics"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://www.google.com/design/spec/animation/",
    "timestamp": null,
    "image": "images/cards/material-animation_2x.png",
    "title": "Animation",
    "summary": "",
    "keywords": [],
    "type": "material design",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://www.google.com/design/spec/style/",
    "timestamp": null,
    "image": "images/cards/material-style_2x.jpg",
    "title": "Style",
    "summary": "",
    "keywords": [],
    "type": "material design",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://www.google.com/design/spec/layout/",
    "timestamp": null,
    "image": "images/cards/material-layout_2x.png",
    "title": "Layout",
    "summary": "",
    "keywords": [],
    "type": "material design",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://www.google.com/design/spec/components/",
    "timestamp": null,
    "image": "images/cards/material-components_2x.jpg",
    "title": "Components",
    "summary": "",
    "keywords": [],
    "type": "material design",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://www.google.com/design/spec/patterns/",
    "timestamp": null,
    "image": "images/cards/material-patterns_2x.png",
    "title": "Patterns",
    "summary": "",
    "keywords": [],
    "type": "material design",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://www.google.com/design/spec/usability/",
    "timestamp": null,
    "image": "images/cards/material-usability_2x.png",
    "title": "Usability",
    "summary": "",
    "keywords": [],
    "type": "material design",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://www.google.com/design/spec/resources/color-palettes.html",
    "timestamp": null,
    "image": "images/cards/material-color-palette_2x.jpg",
    "title": "Color Palettes",
    "summary": "",
    "keywords": [],
    "type": "material design",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://www.google.com/design/spec/resources/layout-templates.html",
    "timestamp": null,
    "image": "images/cards/material-layout-template_2x.jpg",
    "title": "Layout Templates",
    "summary": "",
    "keywords": [],
    "type": "material design",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://www.google.com/design/spec/resources/sticker-sheets-icons.html",
    "timestamp": null,
    "image": "images/cards/material-sticker-sheet_2x.jpg",
    "title": "Sticker Sheets & Icons",
    "summary": "",
    "keywords": [],
    "type": "material design",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://www.google.com/design/spec/resources/roboto-noto-fonts.html",
    "timestamp": null,
    "image": "images/cards/material-typography_2x.jpg",
    "title": "Typography: Roboto and Noto Sans fonts",
    "summary": "",
    "keywords": [],
    "type": "materialdesign",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [
      "icons",
      "material",
      "iconography"
    ],
    "url": "https://www.google.com/design/icons/index.html",
    "timestamp": null,
    "image": "images/cards/card-material-icons-16x9_2x.jpg",
    "title": "Material icon collection",
    "summary": "",
    "keywords": ["icons"],
    "type": "material design",
    "titleFriendly": ""
  },

  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/adwords/answer/6032059",
    "timestamp": null,
    "image": "distribute/images/advertising.jpg",
    "title": "Setting up Mobile App Install Ads",
    "summary": "With Mobile app installs campaigns on the Search and Display Networks, and TrueView for mobile app promotion on YouTube, you can create custom app install ads that run exclusively on phones and tablets.",
    "keywords": ["marketing", "admob"],
    "type": "distribute",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/adwords/answer/6167164",
    "timestamp": null,
    "image": "distribute/images/advertising.jpg",
    "title": "Best practices for Mobile App Engagement",
    "summary": "Learn how to market to your user base to drive re-engagement with your app. ",
    "keywords": ["marketing", "admob"],
    "type": "distribute",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [
      "marketing",
      "engagement",
      "adwords1"
    ],
    "url": "https://support.google.com/adwords/answer/6032073",
    "timestamp": null,
    "image": "https://www.gstatic.com/images/icons/material/product/2x/adwords_64dp.png",
    "title": "Setting up Mobile App Engagement Ads",
    "summary": "Mobile app engagement campaigns are a great choice for advertisers focused on connecting with people who already have their app.",
    "keywords": [
      "marketing",
      "engagement",
      "adwords"
    ],
    "type": "distribute",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [
      "marketing",
      "engagement"
    ],
    "url": "https://support.google.com/adwords/answer/6167162",
    "timestamp": null,
    "image": "https://www.gstatic.com/images/icons/material/product/2x/adwords_64dp.png",
    "title": "Best Practices for Mobile App Installs",
    "summary": "Getting your mobile app discovered can be challenging. Learn how to drive downloads of your app and grow a valuable user base.",
    "keywords": ["marketing", "adwords"],
    "type": "distribute",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/admob/topic/2784623",
    "timestamp": null,
    "image": "distribute/images/advertising.jpg",
    "title": "Set up your AdMob account",
    "summary": "Setting up your AdMob account in the right way will help you get the most value, check out the Setup and Basics guide.",
    "keywords": ["marketing", "admob"],
    "type": "distribute",
    "titleFriendly": ""
    },
    {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "http://analyticsacademy.withgoogle.com/mobile-app",
    "timestamp": null,
    "image": "distribute/images/advertising.jpg",
    "title": "Analytics Academy for Mobile Apps",
    "summary": "Learn how to use Google Analytics to make your app more discoverable and profitable.",
    "keywords": ["marketing", "analytics"],
    "type": "distribute",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/mobile-ads-sdk/download",
    "timestamp": null,
    "image": "distribute/images/advertising.jpg",
    "title": "Admob Ads",
    "summary": "Use the Mobile Ads SDK to start showing AdMob ads in your apps.",
    "keywords": ["marketing", "adwords"],
    "type": "Guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/admob/",
    "timestamp": null,
    "image": "distribute/images/advertising.jpg",
    "title": "AdMob Help Center",
    "summary": "For setup assistance, general info, and fixes for specific problems check out the AdMob Help Center.",
    "keywords": ["admob"],
    "type": "distribute",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/admob/answer/2753860",
    "timestamp": null,
    "image": "distribute/images/advertising.jpg",
    "title": "AdMob Policy Guidelines",
    "summary": "Learn about best practices for displaying AdMob ads in your apps to maximize revenue.",
    "keywords": ["admob"],
    "type": "distribute",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/app-invites/",
    "timestamp": 1383243492000,
    "image": "images/cards/google-search_2x.png",
    "title": "Set up App Invites",
    "summary": "Bring new users to your apps with personal recommendations, incentives, and offers.",
    "keywords": ["invites", "appinvites", "engagement", "getusers"],
    "type": "guide",
    "titleFriendly": ""
  },

  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/app-indexing/",
    "timestamp": 1383243492000,
    "image": "images/cards/google-search_2x.png",
    "title": "Set Up App Indexing",
    "summary": "Surface your app content in Google seaerch. Deep link direct to your apps.",
    "keywords": ["search", "appindexing", "engagement", "getusers"],
    "type": "guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/app-indexing/webmasters/details",
    "timestamp": null,
    "image": "images/cards/google-search_2x.png",
    "title": "Index your app",
    "summary": "Index your app today by adding deep links and verifying its official web site to ensure it starts appearing in Google Search results. ",
    "keywords": ["appindexing","search","getusers"],
    "type": "distribute",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/identity/sign-in/android/people",
    "timestamp": 1383243492000,
    "image": "images/cards/google-sign-in_2x.png",
    "title": "Get user profile details",
    "summary": "After users sign-in with Google, you can access their age range, language, and public profile information.",
    "keywords": ["signin", "identity", "google"],
    "type": "guide",
    "titleFriendly": ""
  },


  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/identity/sign-in/android/",
    "timestamp": "",
    "image": "images/cards/google-sign-in_2x.png",
    "title": "Google Sign-In",
    "summary": "Discover how you can enhance user experiences on your website or in your app using information provided by their Google identity.",
    "keywords": ["signin", "identity", "google"],
    "type": "guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/+/features/play-installs",
    "timestamp": 1383243492000,
    "image": "images/cards/google-sign-in_2x.png",
    "title": "Over-the-air installs",
    "summary": "Follow this step-by-step guide to quickly add Google Sign-in and over-the-air app installs to your website.",
    "keywords": ["signin", "google", "installs"],
    "type": "guide",
    "titleFriendly": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/+/features/analytics",
    "timestamp": 1383243492000,
    "image": 'images/google/gps-googleplus.png',
    "title": "Google+ Insights",
    "summary": "Measure impressions of the over-the-air install prompt, resulting installs, and success rate by day, week, and month.",
    "keywords": ["signin", "identity"],
    "type": "guide",
    "titleFriendly": ""
  },



 // TODO remove this?
  {
    "title":"Android Wear Materials",
    "titleFriendly":"",
    "summary":"Drag and drop your way to beautifully designed Android Wear apps.",
    "url":"design/downloads/index.html#Wear",
    "group":"",
    "keywords": ["icons","stencils","color swatches"],
    "tags": ["icons","stencils","colorswatches"],
    "image":"images/cards/android-wear-materials_2x.jpg",
    "lang":"en",
    "type":"design"
  },
  {
    "title":"UX Design for Mobile Developers",
    "titleFriendly":"",
    "summary":"Learn how to design a 5-star app.",
    "url":"https://www.udacity.com/course/ux-design-for-mobile-developers--ud849",
    "group":"",
    "keywords": ["mobile","ux","design"],
    "tags": ["courses"],
    "image":"images/cards/course-ud849_2x.jpg",
    "lang":"en",
    "type":"online course"
  },
  {
    "title":"Developing Android Apps",
    "titleFriendly":"",
    "summary":"Learn Android and build an app!",
    "url":"https://www.udacity.com/course/developing-android-apps--ud853",
    "group":"",
    "keywords": ["start","firstapp","sdk"],
    "tags": ["courses"],
    "image":"images/cards/course-ud853_2x.jpg",
    "lang":"en",
    "type":"online course"
  },
  {
    "title":"Android Performance",
    "titleFriendly":"",
    "summary":"Optimize your apps for speed and usability.",
    "url":"https://www.udacity.com/course/android-performance--ud825",
    "group":"",
    "keywords": ["performance","battery"],
    "tags": ["courses"],
    "image":"images/cards/course-ud825_2x.png",
    "lang":"en",
    "type":"online course"
  },
  {
    "title":"Enroll in the Android Nanodegree",
    "titleFriendly":"",
    "summary":"Enroll in the Android Nanodegree to build the skills to work as an Android developer.",
    "url":"https://www.udacity.com/android",
    "group":"",
    "keywords": ["nanodegree"],
    "tags": ["courses"],
    "image":"images/cards/course-nanodegree_2x.png",
    "lang":"en",
    "type":"online course"
  },
  {
    "title":"Advanced Android App Development",
    "titleFriendly":"",
    "summary":"Productionize and publish your apps.",
    "url":"https://www.udacity.com/course/advanced-android-app-development--ud855",
    "group":"",
    "keywords": ["android, experts"],
    "tags": ["courses"],
    "image":"images/cards/course-ud855_2x.jpg",
    "lang":"en",
    "type":"online course"
  },
  {
    "title":"Android Ubiquitous Computing",
    "titleFriendly":"",
    "summary":"Extend your apps to Wear, TV, and Auto.",
    "url":"https://www.udacity.com/course/android-ubiquitous-computing--ud875",
    "group":"",
    "keywords": ["wear, tv, auto"],
    "tags": ["courses"],
    "image":"images/cards/course-ud875_2x.jpg",
    "lang":"en",
    "type":"online course"
  },
  {
    "title":"Google Play Services",
    "titleFriendly":"",
    "summary":"Use Google APIs to improve your apps.",
    "url":"https://www.udacity.com/course/google-play-services--ud876",
    "group":"",
    "keywords": ["google, play services, google services"],
    "tags": ["courses"],
    "image":"images/cards/course-ud876_2x.jpg",
    "lang":"en",
    "type":"online course"
  },
  {
    "title":"Android Design for Developers",
    "titleFriendly":"",
    "summary":"Learn how to make your apps material.",
    "url":"https://www.udacity.com/course/android-design-for-developers--ud862",
    "group":"",
    "keywords": ["design, pure, material"],
    "tags": ["courses"],
    "image":"images/cards/course-ud862_2x.jpg",
    "lang":"en",
    "type":"online course"
  },
  {
    "title":"Android Development for Beginners",
    "titleFriendly":"",
    "summary":"Make your first Android app, even if you don't write code.",
    "url":"https://www.udacity.com/course/android-development-for-beginners--ud837",
    "group":"",
    "keywords": ["firstapp",],
    "tags": ["courses"],
    "image":"images/cards/course-ud837_2x.jpg",
    "lang":"en",
    "type":"online course"
  },
  {
    "title":"Gradle for Android and Java",
    "titleFriendly":"",
    "summary":"Build better apps through automation",
    "url":"https://www.udacity.com/course/gradle-for-android-and-java--ud867",
    "group":"",
    "keywords": ["gradle","studio", "sdk"],
    "tags": ["courses"],
    "image":"images/cards/course-ud867_2x.jpg",
    "lang":"en",
    "type":"online course"
  },
  {
    "title":"Watch Faces for Android Wear",
    "titleFriendly":"",
    "summary":"Watch faces let you customize the most prominent UI feature of Android wearables. The API is simple enough for rapid development and flexible enough to build something awesome.",
    "url":"https://www.youtube.com/watch?v=AK38PJZmIW8&list=PLWz5rJ2EKKc-kIrPiq098QH9dOle-fLef",
    "group":"",
    "keywords": ["wear", "wearable", "watch face"],
    "tags": [],
    "image":"http://i1.ytimg.com/vi/AK38PJZmIW8/maxresdefault.jpg",
    "lang":"en",
    "type":"video"
  },
  {
    "title":"Android Support Library",
    "titleFriendly":"",
    "summary":"These essential components help you build a great app that works on the huge variety of Android devices, faster.",
    "url":"https://www.youtube.com/watch?v=3PIc-DuEU2s&list=PLWz5rJ2EKKc9e0d55YHgJFHXNZbGHEXJX",
    "group":"",
    "keywords": ["support", "compatibility"],
    "tags": [],
    "image":"http://i1.ytimg.com/vi/3PIc-DuEU2s/maxresdefault.jpg",
    "lang":"en",
    "type":"Video"
  },
  {
    "title":"Consistent Design with the AppCompat Support Library",
    "titleFriendly":"",
    "summary":"Getting a great looking app doesn't have to be hard: AppCompat, part of the Android Support Library, gives you a consistent design baseline that works on all Android 2.1 or higher devices.",
    "url":"https://www.youtube.com/watch?v=5Be2mJzP-Uw&list=PLWz5rJ2EKKc9e0d55YHgJFHXNZbGHEXJX",
    "group":"",
    "keywords": ["support", "compatibility","design-code"],
    "tags": [],
    "image":"http://i1.ytimg.com/vi/5Be2mJzP-Uw/maxresdefault.jpg",
    "lang":"en",
    "type":"Video"
  },
  {
    "title":"Introducing Gradle",
    "titleFriendly":"",
    "summary":"Android Studio uses an entirely new and flexible Gradle-based build system. You will be able to create multiple build variants for a single project, manage library dependencies and always be sure that your application builds correctly across different environments.",
    "url":"https://www.youtube.com/watch?v=cD7NPxuuXYY&list=PLWz5rJ2EKKc8I9gHTMh5yKkwRRGE8BjbQ",
    "group":"",
    "keywords": ["tools", "studio","gradle"],
    "tags": [],
    "image":"http://i1.ytimg.com/vi/cD7NPxuuXYY/maxresdefault.jpg",
    "lang":"en",
    "type":"Video"
  },
  {
    "title":"Android Studio Layout Editor",
    "titleFriendly":"",
    "summary":"Android Studio includes a rich, visual layout editor that helps developers create better user interfaces. It eliminates the need to deploy the APK on a real device with each change, making iterations faster and helping eliminate common errors earlier in the development process.",
    "url":"https://www.youtube.com/watch?v=JLLnhwtDoHw&list=PLWz5rJ2EKKc8I9gHTMh5yKkwRRGE8BjbQ",
    "group":"",
    "keywords": ["tools", "studio","layout"],
    "tags": [],
    "image":"http://i1.ytimg.com/vi/JLLnhwtDoHw/maxresdefault.jpg",
    "lang":"en",
    "type":"Video"
  },
  {
    "title":"Debugging and testing in Android Studio",
    "titleFriendly":"",
    "summary":"Learn about new debugger features in Android Studio 1.2: value inlining, quick access to referring objects and a Java .class decompiler, just to name a few. See some new tools and views that let you monitor the CPU and memory performance of your app from within the IDE. ",
    "url":"https://www.youtube.com/watch?v=2I6fuD20qlY&list=PLWz5rJ2EKKc8I9gHTMh5yKkwRRGE8BjbQ",
    "group":"",
    "keywords": ["tools", "studio","debugging","profiling","performance"],
    "tags": [],
    "image":"http://i1.ytimg.com/vi/2I6fuD20qlY/maxresdefault.jpg",
    "lang":"en",
    "type":"Video"
  },
  {
    "tags": [
      "android",
      "developerstory",
      "googleplay",
      "featured"
    ],
    "title": "Android Developer Story: Jelly Button Games — Growing globally through data driven development",
    "type": "youtube",
    "url": "http://www.youtube.com/watch?v=Pd49vTkvu0U"
  },
  {
    "title":"Scale with Google Cloud Platform",
    "titleFriendly":"",
    "summary":"Build, test, and deploy applications on Google's highly-scalable and reliable infrastructure for your web, mobile and backend solutions.",
    "url":"https://cloud.google.com/docs/",
    "group":"",
    "keywords": [],
    "tags": [],
    "image":"images/cards/cloud-platform_2x.png",
    "lang":"en",
    "type":"distribute"
  },
  {
    "title":"Opportunities & Programs",
    "titleFriendly":"",
    "summary":"Take advantage of the many ways you can distribute your app to consumers, students, and businesses through Google Play.",
    "url":"distribute/googleplay/index.html#opportunities",
    "group":"",
    "keywords": [],
    "tags": [],
    "image":"images/cards/program-edu_2x.jpg",
    "lang":"en",
    "type":"distribute"
  },
  {
    "title":"Android for Work",
    "titleFriendly":"",
    "summary":"Learn more about how Android for Work makes your favorite phones and tablets the perfect business tools.",
    "url":"http://www.android.com/work/",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"images/cards/card-android-work_2x.png",
    "lang":"en",
    "type":"about"
  },
  {
    "title":"Android for Work DevBytes",
    "titleFriendly":"",
    "summary":"Watch the videos in this playlist to understand more about Android for Work and get tips on developing enterprise apps.",
    "url":"https://www.youtube.com/watch?v=jQWB_-o1kz4&list=PLOU2XLYxmsIKAK2Bhv19H2THwF-22O5WX",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"http://i1.ytimg.com/vi/jQWB_-o1kz4/maxresdefault.jpg",
    "lang":"en",
    "type":"youtube"
  },
  {
    "title":"App Configurations, Testing and Launchers",
    "titleFriendly":"",
    "summary":"With Android for Work you can make your apps remotely configurable. We also cover how to test your app in a managed environment.",
    "url":"https://www.youtube.com/watch?v=39NkpWkaH8M&index=2&list=PLOU2XLYxmsIKAK2Bhv19H2THwF-22O5WX",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"http://i1.ytimg.com/vi/39NkpWkaH8M/maxresdefault.jpg",
    "lang":"en",
    "type":"youtube"
  },
  {
    "title":"Building an enterprise ready app",
    "titleFriendly":"",
    "summary":"A holistic view of Android for Work for developers.",
    "url":"https://www.youtube.com/watch?v=dH41OutAMNM",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"http://i1.ytimg.com/vi/dH41OutAMNM/maxresdefault.jpg",
    "lang":"en",
    "type":"youtube"
  },
  {
    "title":"Android for Work: Single Use Devices",
    "titleFriendly":"",
    "summary":"Single-purpose computers are everywhere, and Android can meet that need.",
    "url":"https://www.youtube.com/watch?v=j3QC6hcpy90",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"http://i1.ytimg.com/vi/j3QC6hcpy90/maxresdefault.jpg",
    "lang":"en",
    "type":"youtube"
  },
  {
    "title":"Discover YouTube cards",
    "titleFriendly":"",
    "summary":"Find out more about YouTube cards, the options available, and how to use them to get the most from your YouTube content.",
    "url":"https://support.google.com/youtube/answer/6140493",
    "group":"",
    "keywords": ["youtube", "video", "users", "installs"],
    "tags": [],
    "image":"images/cards/card-youtube_2x.png",
    "lang":"en",
    "type":"distribute"
  },
    {
    "title":"What is YouTube account good standing?",
    "titleFriendly":"",
    "summary":"Learn what it means for an account to be in good standing from the YouTube Help Center.",
    "url":"https://support.google.com/youtube/answer/2797387",
    "group":"",
    "keywords": ["youtube", "video", "users", "installs"],
    "tags": [],
    "image":"images/cards/card-youtube_2x.png",
    "lang":"en",
    "type":"distribute"
  },


  {
    "lang": "ja",
    "title": "Gaming Everywhere",
    "titleFriendly": "",
    "summary": "東京ゲームショウ 2014 の基調講演より。",
    "url": "https://www.youtube.com/watch?v=xelYnWcYkuE",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "http://img.youtube.com/vi/xelYnWcYkuE/hqdefault.jpg",
    "type": "youtube"
  },
  {
    "lang": "ja",
    "title": "Playtime Tokyo",
    "titleFriendly": "",
    "summary": "アプリビジネスのノウハウを各担当者が講演しました。",
    "url": "https://www.youtube.com/playlist?list=PLCOC_kP3nqGIHEgwm9mybvA04Vn4Cg9nn",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "http://img.youtube.com/vi/lJdjY3z6-LY/hqdefault.jpg",
    "type": "youtube"
  },
  {
    "lang": "ja",
    "title": "Android Wear 関連の動画に日本語字幕が付きました",
    "titleFriendly": "",
    "summary": "",
    "url": "http://googledevjp.blogspot.jp/2014/12/android-wear.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "http://i1.ytimg.com/vi/4JcDYkgqksY/maxresdefault.jpg",
    "type": "blog"
  },
  {
    "lang": "ja",
    "title": "Android Studio 1.0 をリリースしました",
    "titleFriendly": "",
    "summary": "",
    "url": "http://googledevjp.blogspot.jp/2014/12/android-studio-10.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "http://3.bp.blogspot.com/-1hV3sD1At74/VIaQSWBasUI/AAAAAAAABAU/9vYLJMsmMuQ/s1600/studio-logo.png",
    "type": "blog"
  },
  {
    "lang": "ja",
    "title": "Google Play 開発者サービス 6.5 のご紹介",
    "titleFriendly": "",
    "summary": "",
    "url": "http://googledevjp.blogspot.jp/2014/12/google-play-65.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "http://1.bp.blogspot.com/-4BNREC0Jojo/VGo7ahW35wI/AAAAAAAABAc/9thZl94F6fY/s1600/GMS%2B-%2BRelease%2BBlog%2BNacho%2B-%2BMap%2BToolbar.png",
    "type": "blog"
  },
  {
    "lang": "ja",
    "title": "Alpha and Beta Testing",
    "titleFriendly": "",
    "summary": "アプリのローンチにまつわるリスクを最小限にするために必須のツールです。[英語コンテンツ]",
    "url": "intl/ja/distribute/googleplay/developer-console.html#alpha-beta",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "images/gp-dc-ab.png",
    "type": "distribute"
  },
  {
    "lang": "ja",
    "title": "Finding Success on Google Play",
    "titleFriendly": "",
    "summary": "Google Play での成功の秘訣がこの一冊に。[英語コンテンツ]",
    "url": "intl/ja/distribute/googleplay/guide.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "distribute/images/play_dev_guide_b.jpg",
    "type": "distribute"
  },
  {
    "lang": "ja",
    "title": "Core App Quality",
    "titleFriendly": "",
    "summary": "",
    "url": "intl/ja/distribute/essentials/quality/core.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "images/gp-core-quality.png",
    "type": "distribute"
  },
  {
    "lang": "ja",
    "title": "Google Play アプリ ポリシー センター",
    "titleFriendly": "",
    "summary": "",
    "url": "http://support.google.com/googleplay/android-developer/answer/4430948?hl=ja",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "https://storage.googleapis.com/support-kms-prod/SNP_712EA2784949DDF085C46E3BE7B1DC618A09_4389356_en_v0",
    "type": "distribute"
  },
  {
    "lang": "ja",
    "title": "Developer Support",
    "titleFriendly": "",
    "summary": "",
    "url": "intl/ja/support.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "",
    "type": "distribute"
  },
  {
    "lang": "ja",
    "title": "Wear App Quality",
    "titleFriendly": "",
    "summary": "いよいよウェアラブルの時代が到来。[英語コンテンツ]",
    "url": "intl/ja/distribute/essentials/quality/wear.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "distribute/images/gp-wear-quality.png",
    "type": "distribute"
  },
  {
    "lang": "ja",
    "title": "Google Cloud Platform が支える、新感覚リアルタイム RPG ユニゾンリーグ - 株式会社エイチームの GCP 導入事例",
    "titleFriendly": "",
    "summary": "スケーラブルなバックエンドを実現する Google Cloud Platform の最新導入事例。",
    "url": "http://googleforwork-japan.blogspot.jp/2014/12/gcp-google-cloud-platform-rpg-gcp.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "http://3.bp.blogspot.com/-xp7KoPkbne4/VI_PfoFil3I/AAAAAAAAA3U/-k1UZ0zjCBc/s1600/unison-league.jpeg",
    "type": "distribute"
  },
  {
    "lang": "ja",
    "title": "Monetize with Ads",
    "titleFriendly": "",
    "summary": "アプリ内広告成功のコツがここに。[英語コンテンツ]",
    "url": "intl/ja/distribute/monetize/ads.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "distribute/images/advertising.jpg",
    "type": "distribute"
  },
  {
    "lang": "ko",
    "title": "구글 플레이 2015년 비전",
    "titleFriendly": "",
    "summary": "G-Star 구글 컨퍼런스",
    "url": "https://www.youtube.com/watch?v=7X9Ue0Nfdh4&index=2&list=PL_WJkTbDHdBksDBRoqfeyLchEQqBAOlNl",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "http://img.youtube.com/vi/7X9Ue0Nfdh4/hqdefault.jpg",
    "type": "youtube"
  },
  {
    "lang": "ko",
    "title": "구글 플레이 게임",
    "titleFriendly": "",
    "summary": "게임 프로필, 퀘스트, 세이브드 게임 등의 신기능 소개",
    "url": "https://www.youtube.com/watch?v=83FpwuschCQ",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "http://img.youtube.com/vi/83FpwuschCQ/hqdefault.jpg",
    "type": "youtube"
  },
  {
    "lang": "ko",
    "title": "안드로이드 5.0 롤리팝을 맞이하는 개발자를 위한 안내서",
    "titleFriendly": "",
    "summary": "",
    "url": "http://googledevkr.blogspot.com/2014/11/android50guidefordevelopers.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "https://lh5.googleusercontent.com/0Gx4Ob_WvIgNOMv3hVMuUm4O7KuSWyxCEFIvy39_6fgXh2q2azqjZf3bpZoEk-LMW-K8GwYMfyYfMUAwp38hhPQ6WFNnddhN2E2_GF3-XBQI_qjhISviz10h_mGgDWsZKA",
    "type": "blog"
  },
  {
    "lang": "ko",
    "title": "안드로이드 앱을 위한 머티리얼 디자인 체크 리스트",
    "titleFriendly": "",
    "summary": "",
    "url": "http://googledevkr.blogspot.com/2014/10/material-design-on-android-checklist.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "https://lh4.googleusercontent.com/JKoxeDdmsj6gYHV8rmp96U1jHj7FKeMzGBaaFu35kXp5EpJR9Ei9MQFAYghjwJoycdgydw-FZTuFNY8pDx63MWhy37rKC96ajoDXEMzvo9W0sj5yC2-uSYJdhpazVOP2cA",
    "type": "blog"
  },
  {
    "lang": "ko",
    "title": "App Compat 라이브러리",
    "titleFriendly": "",
    "summary": "",
    "url": "http://googledevkr.blogspot.com/2014/10/appcompat-v21-material-design-for-pre.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "http://2.bp.blogspot.com/-7fF9ayZ6PgI/U9iFpk5FNEI/AAAAAAAAAs0/4P4SCvdB_4M/s640/image00.png",
    "type": "blog"
  },
  {
    "lang": "ko",
    "title": "Alpha and Beta Testing",
    "titleFriendly": "",
    "summary": "출시 전에 완벽한 사전 테스트 [영문]",
    "url": "intl/ko/distribute/googleplay/developer-console.html#alpha-beta",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "images/gp-dc-ab.png",
    "type": "distribute"
  },
  {
    "lang": "ko",
    "title": "Finding Success on Google Play",
    "titleFriendly": "",
    "summary": "구글 플레이에서 성공하는 비결 [영문]",
    "url": "intl/ko/distribute/googleplay/guide.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "distribute/images/play_dev_guide_b.jpg",
    "type": "distribute"
  },
  {
    "lang": "ko",
    "title": "Core App Quality",
    "titleFriendly": "",
    "summary": "고품질 안드로이드 앱 개발 가이드 [영문]",
    "url": "intl/ko/distribute/essentials/quality/core.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "images/gp-core-quality.png",
    "type": "distribute"
  },
  {
    "lang": "ko",
    "title": "Policy Guidelines and Practices",
    "titleFriendly": "",
    "summary": "숙지해야할 중요한 정책 [영문]",
    "url": "https://support.google.com/googleplay/android-developer/answer/4430948?hl=ko",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "https://storage.googleapis.com/support-kms-prod/SNP_712EA2784949DDF085C46E3BE7B1DC618A09_4389356_en_v0",
    "type": "distribute"
  },
  {
    "lang": "ko",
    "title": "Developer Support",
    "titleFriendly": "",
    "summary": "개발자 지원 센터 활용 [영문]",
    "url": "intl/ko/support.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "https://lh3.googleusercontent.com/-mGTYed3Uh-E/AAAAAAAAAAI/AAAAAAAAF58/qNYbk4mMhI0/s120-c/photo.jpg",
    "type": "distribute"
  },
  {
    "lang": "ko",
    "title": "Wear App Quality",
    "titleFriendly": "",
    "summary": "웨어러블 앱 개발 가이드 [영문]",
    "url": "intl/ko/distribute/essentials/quality/wear.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "distribute/images/gp-wear-quality.png",
    "type": "distribute"
  },
  {
    "lang": "ko",
    "title": "Android TV 어플리케이션 개발",
    "titleFriendly": "",
    "summary": "앱과 게임을 거실에서 가족과 함께 [영문]",
    "url": "intl/ko/tv/index.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "design/tv/images/atv-home.jpg",
    "type": "distribute"
  },
  {
    "lang": "ko",
    "title": "구글 플레이 게임 서비스",
    "titleFriendly": "",
    "summary": "다양한 구글 플레이 게임 서비스 기능 알아보기 [영문]",
    "url": "intl/ko/google/play-services/games.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "https://developers.google.com/games/services/images/gamescreen3.jpg",
    "type": "distribute"
  },
  {
    "lang": "ko",
    "title": "Monetize with Ads",
    "titleFriendly": "",
    "summary": "광고로 수익 창출하기 [영문]",
    "url": "intl/ko/distribute/monetize/ads.html",
    "group": "",
    "keywords": [],
    "tags": [],
    "image": "distribute/images/advertising.jpg",
    "type": "distribute"
  },
  {
    "url":"https://www.youtube.com/watch?v=QDM52bblwlg",
    "image": "images/distribute/hero-family-discovery.jpg",
    "title": "Introducing the new family discovery experience on Google Play",
    "summary": "Help families create little moments on Google Play. Opt-in your apps now.",
    "tags":["families","googleplay"],
    "type":"youtube"
  },
  {
    "url":"https://www.youtube.com/watch?v=wcjqBSei3a0&list=PLOU2XLYxmsIKLNUPiFCWVtcO7mZRZ9MmS",
    "image": "http://i1.ytimg.com/vi/wcjqBSei3a0/maxresdefault.jpg",
    "title": "Developers connecting the world through Google Play",
    "summary": "The mobile ecosystem is empowering developers to make good on the dream of connecting the world through technology to improve people's lives.",
    "tags":["io15","googleplay"],
    "keywords":["Google I/O 2015","io"],
    "type":"youtube"
  },
  {
    "url":"https://www.youtube.com/watch?v=B6ydLpkhq04&list=PLOU2XLYxmsIKLNUPiFCWVtcO7mZRZ9MmS",
    "image": "http://i1.ytimg.com/vi/B6ydLpkhq04/maxresdefault.jpg",
    "title": "Store Listing Experiments for Google Play",
    "summary": "Learn how to use Google Play’s new store listing optimization feature to get more installs of your app, and how to test different graphics and text to find out which options perform the best. ",
    "tags":["io15","googleplay","store listing"],
    "tags":["google i/o","google play","store listing"],
    "type":"youtube"
  },
  {
    "url":"https://www.youtube.com/watch?v=jyO3-rF4Mu0&list=PLOU2XLYxmsIKLNUPiFCWVtcO7mZRZ9MmS",
    "image": "http://i1.ytimg.com/vi/jyO3-rF4Mu0/maxresdefault.jpg",
    "title": "Growing games with Google",
    "summary": "The games industry has never been more promising and full of opportunities. This talk covers how Google is helping developers across a broad range of existing and emerging platforms.",
    "tags":["io15","android", "googleplay","games"],
    "keywords":["Google I/O","google play","games"],
    "type":"youtube"
  }
]);

var CAROUSEL_OVERRIDE = {
  "about/versions/lollipop.html": {
    "image": "images/home/hero-lollipop_2x.png",
    "heroColor": "#263238",
    "heroInvert": true,
    "title": "Android 5.0 Lollipop",
    "summary": "The Android 5.0 update adds a variety of new features for your apps, such as notifications on the lock screen, an all-new camera API, OpenGL ES 3.1, the new naterial design interface, and much more.",
  },
  "http://www.youtube.com/watch?v=Pd49vTkvu0U": {
    "url":"http://www.youtube.com/watch?v=Pd49vTkvu0U&list=PLWz5rJ2EKKc9ofd2f-_-xmUi07wIGZa1c",
    "image": "images/distribute/hero-jelly-button.jpg",
    "title": "How Jelly Button Games are growing globally through data",
    "summary": "To really understand their users, Jelly Button Games analyzes over 3 billion events each month using Google Analytics and Google BigQuery.",
  },
  "http://www.youtube.com/watch?v=700gYRkhkLM": {
    "url":"http://www.youtube.com/watch?v=700gYRkhkLM&list=PLWz5rJ2EKKc9ofd2f-_-xmUi07wIGZa1c",
    "image": "images/distribute/hero-outfit7.jpg",
    "title": "Outfit7 — Building an entertainment company with Google",
    "summary": "Outfit7, creators of My Talking Tom and My Talking Angela, offer a complete entertainment experience to users spanning mobile apps, user generated and original YouTube content, and a range of toys, clothing, and accessories....",
  },
  "http://www.youtube.com/watch?v=MPnH7h12h0U": {
    "url":"http://www.youtube.com/watch?v=MPnH7h12h0U&list=PLWz5rJ2EKKc9ofd2f-_-xmUi07wIGZa1c",
    "image": "images/distribute/hero-haystack.jpg",
    "summary": "Haystack TV built a scalable business with six employees and Android TV. Two weeks was all it took for them to bring their mobile app to the big screen.",
  },
  "http://www.youtube.com/watch?v=ekxABqJeRBc": {
    "url":"http://www.youtube.com/watch?v=ekxABqJeRBc&list=PLWz5rJ2EKKc9ofd2f-_-xmUi07wIGZa1c",
    "image": "images/distribute/hero-ginlemon.jpg",
    "title": "How GinLemon is breaking through with Google Play",
    "summary": "Meet Vincenzo Colucci, developer and founder of GinLemon, which started as a summer holiday joke and has now become a successful global app business on Google Play based in Manfredonia, southern Italy.",
  },
  "distribute/googleplay/guide.html": {
    "heroColor": "#fcb94e",
    "image": "images/distribute/hero-g-play-guidebooks_2x.png",
    "title": "Finding success on Google Play",
    "summary": "We’ve created a downloadable guide to help you find success with your app or game business on Google Play. In it, you’ll find features, tips, and best practices to help you build an effective strategy.",
  },
  "http://www.youtube.com/watch?v=0r36OJaeMo4": {
    "url":"http://www.youtube.com/watch?v=0r36OJaeMo4&list=PLWz5rJ2EKKc9ofd2f-_-xmUi07wIGZa1c",
    "image": "images/distribute/hero-shifty-jelly.jpg",
    "title": "Shifty Jelly — building a number 1 podcast app",
    "summary": "Shifty Jelly is an Adelaide based mobile development company that has seen great success building Pocket Casts, a premium podcast manager app.",
  },
  "http://www.youtube.com/watch?v=1Iw7Tg_afKk": {
    "image": "images/distribute/hero-wooga.jpg",
    "url":"http://www.youtube.com/watch?v=1Iw7Tg_afKk&list=PLWz5rJ2EKKc9ofd2f-_-xmUi07wIGZa1c",
    "title": "Wooga’s fast iterations on Google Play",
    "summary": "The speed at which Wooga is able to iterate its live and under development games with the Android and Google Play tools has been key to delivering hits such as Diamond Dash, Jelly Splash, and Agent Alice.",
  },
  "http://www.youtube.com/watch?v=TieksFvD-7o": {
    "url":"http://www.youtube.com/watch?v=TieksFvD-7o&list=PLWz5rJ2EKKc9ofd2f-_-xmUi07wIGZa1c",
    "image": "images/distribute/hero-trello.jpg",
    "title": "Trello lifts engagement by double digits with material design",
    "summary": "Trello recently redesigned their collaborative planning app using the material design guidelines, and their efforts paid off.",
  },
  "http://www.youtube.com/watch?v=MCoh4Pxs_ok": {
    "url":"http://www.youtube.com/watch?v=MCoh4Pxs_ok&list=PLWz5rJ2EKKc9ofd2f-_-xmUi07wIGZa1c",
    "image": "images/distribute/hero-the-hunt.jpg",
    "title": "The Hunt — growing engagement with material design and Google Play",
    "summary": "Material design has helped The Hunt to enhance engagement in their style advice and product discovery app. ",
  },
  "https://www.youtube.com/watch?v=QDM52bblwlg": {
    "url":"distribute/googleplay/families/about.html",
    "image": "images/distribute/hero-family-discovery.jpg",
    "title": "Designed for families",
    "summary": "Introducing the new family discovery experience in Google Play. Your apps can benefit from enhanced discoverability and maintain their existing categories, rankings, and reviews elsewhere in the store. Opt-in your apps today.",
    "type":"distribute",
  },
  "https://www.youtube.com/watch?v=wcjqBSei3a0&list=PLOU2XLYxmsIKLNUPiFCWVtcO7mZRZ9MmS": {
    "url":"https://www.youtube.com/watch?v=wcjqBSei3a0&list=PLOU2XLYxmsIKLNUPiFCWVtcO7mZRZ9MmS",
    "image": "images/distribute/hero-IO15-google-play.jpg",
    "title": "Connecting the world through Google Play",
    "tags":["io15"],
    "summary": "In this this Google I/O talk, hear how the mobile ecosystem is empowering developers to connect the world through technology and improve people's lives.",
  },
  "https://www.youtube.com/watch?v=B6ydLpkhq04&list=PLOU2XLYxmsIKLNUPiFCWVtcO7mZRZ9MmS": {
    "image": "images/distribute/hero-store-listing-experience.jpg",
    "title": "Using Google Play store listing experiments",
    "tags":["io15"],
    "summary": "Learn how to use Google Play store listing experiments to get more installs in this Google I/O talk. Test different graphics and text to find out which options perform the best. ",
  },
  "https://www.youtube.com/watch?v=jyO3-rF4Mu0&list=PLOU2XLYxmsIKLNUPiFCWVtcO7mZRZ9MmS": {
    "image": "images/distribute/hero-IO15-growing-games.jpg",
    "title": "Growing games with Google",
    "tags":["io15"],
    "summary": "The games industry has never been more promising and full of opportunities. This talk from Google I/O 2015 covers how Google is helping developers across a broad range of existing and emerging platforms.",
  }
};