summaryrefslogtreecommitdiff
path: root/docs/html/jd_extras_en.js
blob: 6295e0efd00ce525c93ffc4c622ed5ace5a84ae8 (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
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
/* Metadata extensions for the specified language
   as well as resource collection definitions.

   'Extras' defined in this file are metadata represendations of
   resources that are outside the autogenerated local resource lists,
   or representations that override the default representations.
   (Overriding the default is not recommended)

   'Collections' are a predefined set of resources that pages can
   display by referencing the collection name in a data query. Urls
   listed in a collection must map exactly to urls in local metadata
   resources (either default or extras).

   'Carousel overrides' are extras that override a default resource
   for the purpose of customizing the text and display in carousels/heros.
   Urls referenced must map exactly to urls in local metadata
   resources (either default or extras).

   'Static search results' are metadata objects that are returned in
   the search results page when the user enters the object's keyword.

   The extras, collections, carousel overrides, and static search results
   listed here are referenced from dynamic content queries, matched by
   url string.
  */

METADATA['en'].extras = METADATA['en'].extras.concat([
 /* TODO Remove standard resources from here, such as below
 */
  {
    "title":"Meet Android Studio",
    "summary":"The basics of working with Android Studio, from projects to build and performance.",
    "url":"studio/intro/index.html",
    "image":"studio/images/intro/main-window_2-1_2x.png",
    "type":"studio",
    "keywords": ["studio","sdk","tools","firstapp"],
    "tags": ["studio","sdk","tools","firstapp"],
    "lang":"en"
  },
  {
    "title":"Configure Your Build",
    "summary":"Learn about Android Studio's build configuration.",
    "url":"studio/build/index.html",
    "image":"images/tools/studio/build-process_2x.png",
    "type":"studio",
    "keywords": ["studio","configuration"],
    "tags": ["studio","configuration"],
    "lang":"en"
  },
  {
    "title":"Android Studio Features",
    "summary":"A quick look at key Android Studio features.",
    "url":"studio/features.html",
    "image":"images/cards/card-studio-modules_crop_2x.png",
    "type":"studio",
    "keywords": ["studio","tools","sdk"],
    "tags": ["studio"],
    "lang":"en"
  },
  {
    "title":"Using Code Templates",
    "summary":"Quickly create Android app projects with various UI or functional components.",
    "url":"studio/projects/templates.html",
    "image":"images/cards/card-using-code-templates_16x9_2x.png",
    "type":"studio",
    "keywords": ["studio","templates","firstapp"],
    "tags": ["studio","templates","firstapp"],
    "lang":"en"
  },
  {
    "title":"Publishing Overview",
    "summary":"Start here for an overview of publishing options for Android apps.",
    "url":"studio/publish/index.html",
    "image":"images/publishing/publishing_overview.png",
    "type":"studio",
    "keywords": [],
    "tags": [],
    "lang":"en"
  },
  {
    "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.",
    "url":"studio/publish/preparing.html",
    "image":"images/publishing/publishing_overview_prep.png",
    "type":"studio",
    "keywords": [],
    "tags": [],
    "lang":"en"
  },
  {
    "title":"Network Monitor",
    "summary":"Use the Network Monitor to analyze network requests, including how and when your app transfers data. Preserve battery life by optimizing network use.",
    "url":"studio/profile/am-network.html",
    "image":"images/tools/thumbnails/am-networkmon.png",
    "type":"studio",
    "keywords": ["monitor"],
    "tags": ["monitor"],
    "lang":"en"
  },
  {
    "title":"Memory Monitor",
    "summary":"Use the Memory Monitor to evaluate memory usage and find deallocated objects, locate memory leaks, and track the amount of memory the connected device is using.",
    "url":"studio/profile/am-memory.html",
    "image":"images/tools/thumbnails/am-memorymon.png",
    "type":"studio",
    "keywords": ["monitor"],
    "tags": ["monitor"],
    "lang":"en"
  },
  {
    "title":"UI/Application Exerciser Monkey",
    "summary":"The Monkey is a program that runs on your emulator or device and generates pseudo-random streams of user events such as clicks, touches, or gestures, as well as a number of system-level events. You can use the Monkey to stress-test applications that you\u2026",
    "url":"studio/test/monkey.html",
    "type":"studio",
    "keywords": [],
    "tags": [],
    "lang":"en"
  },
  {
    "title":"CPU Monitor",
    "summary":"Use the CPU Monitor to display CPU usage in real time and the percentage of total CPU time (including all cores) used in user and kernel mode.",
    "url":"studio/profile/am-cpu.html",
    "image":"images/tools/thumbnails/am-cpumon.png",
    "type":"studio",
    "keywords": ["monitor"],
    "tags": ["monitor"],
    "lang":"en"
  },
  {
    "title":"Shrink Your Code and Resources",
    "summary":"Make your APK file smaller and more secure by shrinking your code and resources.",
    "url":"studio/build/shrink-code.html",
    "type":"studio",
    "keywords": [],
    "tags": [],
    "lang":"en"
  },
  {
    "title":"logcat Monitor",
    "summary":"Use the logcat Monitor to view system and user-defined log messages. You can filter the messages to display just the items that interest you.",
    "url":"studio/debug/am-logcat.html",
    "image":"images/tools/thumbnails/am-logcatmon2.png",
    "type":"studio",
    "keywords": ["monitor"],
    "tags": ["monitor"],
    "lang":"en"
  },
  {
    "title":"GPU Monitor",
    "summary":"Use the GPU Monitor for a visual representation of how much time it takes to render the frames of a UI window. Use this information to optimize the code that displays graphics and conserve memory.",
    "url":"studio/profile/am-gpu.html",
    "image":"images/tools/thumbnails/am-gpumon.png",
    "type":"studio",
    "keywords": ["monitor"],
    "tags": ["monitor"],
    "lang":"en"
  },
  {
    "title":"HPROF Viewer and Analyzer",
    "summary":"Use the Memory Monitor to dump the Java heap to an HPROF file. The HPROF Viewer displays classes, instances of each class, and a reference tree to help you track memory usage and find memory leaks.",
    "url":"studio/profile/am-hprof.html",
    "image":"images/tools/thumbnails/am_hprofviewer.png",
    "type":"tools",
    "keywords": ["android","performance","profiling","tools","monitor"],
    "tags": ["android","performance","profiling","tools","monitor"],
    "lang":"en"
  },
  {
    "title":"Video Capture",
    "summary":"Use the Video tool to make a video of the display on a hardware device.",
    "url":"studio/debug/am-video.html",
    "image":"images/tools/thumbnails/am_video.png",
    "type":"tools",
    "keywords": ["android","performance","profiling","tools","monitor"],
    "tags": ["android","performance","profiling","tools","monitor"],
    "lang":"en"
  },
  {
    "title":"Screen Capture",
    "summary":"Use the Screen Capture tool to take a screenshot of the display on a hardware device or the emulator. Optionally display the screenshot within a graphic of a device.",
    "url":"studio/debug/am-screenshot.html",
    "image":"images/tools/thumbnails/am_screenshot.png",
    "type":"tools",
    "keywords": ["android","performance","profiling","tools","monitor"],
    "tags": ["android","performance","profiling","tools","monitor"],
    "lang":"en"
  },
  {
    "title":"Allocation Tracker",
    "summary":"Use the Memory Monitor to capture allocation data about your app. The Allocation Tracker displays each method responsible for an allocation, as well as the allocation size and number of instances.",
    "url":"studio/profile/am-allocation.html",
    "image":"images/tools/thumbnails/am_alloctracker.png",
    "type":"tools",
    "keywords": ["android","performance","profiling","tools","monitor"],
    "tags": ["android","performance","profiling","tools","monitor"],
    "lang":"en"
  },
  {
    "title":"Method Trace",
    "summary":"Use the CPU Monitor to perform a method trace on your app. View call stack and timing information in the method trace display.",
    "url":"studio/profile/am-methodtrace.html",
    "image":"images/tools/thumbnails/am_methodtrace.png",
    "type":"tools",
    "keywords": ["android","performance","profiling","tools","monitor"],
    "tags": ["android","performance","profiling","tools","monitor"],
    "lang":"en"
  },
  {
    "title":"System Information",
    "summary":"Use the System Information tool to capture <code>dumpsys</code> information about your app. View activity manager, package, memory usage, and graphics state information.",
    "url":"studio/profile/am-sysinfo.html",
    "image":"images/tools/thumbnails/am_sysinfo.png",
    "type":"tools",
    "keywords": ["android","performance","profiling","tools","monitor"],
    "tags": ["android","performance","profiling","tools","monitor"],
    "lang":"en"
  },
  {
    "title":"monkeyrunner",
    "summary":"The monkeyrunner tool provides an API for writing programs that control an Android device or emulator from outside of Android code. With monkeyrunner, you can write a Python program that installs an Android application or test package, runs it, sends \u2026",
    "url":"studio/test/monkeyrunner/index.html",
    "type":"studio",
    "keywords": [],
    "tags": [],
    "lang":"en"
  },
  {
    "title":"Testing from the Command-Line",
    "summary":"This document describes how to create and run tests directly from the command line. This document assumes that you already know how to create a Android application in your programming environment. You can run tests from the command-line, either with Gradle\u2026",
    "url":"studio/test/command-line.html",
    "type":"studio",
    "keywords": [],
    "tags": [],
    "lang":"en"
  },
  {
    "title":"Test Your App",
    "summary":"This document describes key concepts related to Android app testing. It assumes you have a basic knowledge of the JUnit testing framework. Android testing is based on JUnit. In general, a JUnit test is a method whose statements test a part of the application\u2026",
    "url":"studio/test/index.html",
    "image":"studio/images/test/test-framework.png",
    "type":"studio",
    "keywords": [],
    "tags": [],
    "lang":"en"
  },
  {
    "title":"Android Studio 2.0",
    "category":"",
    "summary":"Android Studio 2.0 is the fastest way to build high quality, performant apps for the Android platform, including phones and tablets, Android Auto, Android Wear, and Android TV. As the official IDE from Google, Android Studio includes everything you…",
    "url":"http://android-developers.blogspot.com/2016/04/android-studio-2-0.html",
    "group":"",
    "keywords": [],
    "tags": ['studio'],
    "image":"https://1.bp.blogspot.com/-vxXg6Inv_WA/VwaJ0uzSf_I/AAAAAAAACr4/xzszbcRzWRgSaHXpOpYroG7u6bgsFJjqw/s200/image03.png",
    "type":"blog"
  },
  {
    "title":"Writing More Code by Writing Less Code with Android Studio Live Templates",
    "category":"",
    "summary":"Unless you’re getting paid by the keystroke, no one wants to write repetitive boilerplate code.",
    "url":"https://medium.com/google-developers/writing-more-code-by-writing-less-code-with-android-studio-live-templates-244f648d17c7#.hczcm02du",
    "group":"",
    "keywords": [],
    "tags": ['studio'],
    "image":"https://cdn-images-1.medium.com/max/800/1*JkrYXGs1AxZAbK0sCLrJAQ.gif",
    "type":"medium"
  },
  {
    "title":"How Often Should You Update Android Studio?",
    "category":"",
    "summary":"One of the beauties of Android Studio is how quickly is evolves and improves.",
    "url":"https://medium.com/google-developers/how-often-should-you-update-android-studio-db25785c488e#.8blbql35x",
    "group":"",
    "keywords": [],
    "tags": ['studio'],
    "image":"https://cdn-images-1.medium.com/max/2000/1*chMiA9mGa_FBUOoesHHk3Q.png",
    "type":"medium"
  },
  {
    "title":"SmallerAPK, Part 6: Image optimization, Zopfli & WebP",
    "category":"",
    "summary":"Series of posts on minimizing your APK size.",
    "url":"https://medium.com/@wkalicinski/smallerapk-part-6-image-optimization-zopfli-webp-4c462955647d#.23hlddo3x",
    "group":"",
    "keywords": [],
    "tags": [],
    "image":"https://cdn-images-1.medium.com/max/2000/1*chMiA9mGa_FBUOoesHHk3Q.png",
    "type":"medium"
  },

  {
    "title":"Measure your app’s user acquisition channels",
    "category":"google",
    "summary":"Get details on how to use the Developer Console User Acquisitions reports to discover where your users come from.",
    "url":"https://support.google.com/googleplay/android-developer/answer/6263332",
    "group":"",
    "keywords": [],
    "tags": [],
    "image":"images/cards/google-play_2x.png",
    "type":"distribute"
  },
  {
    "title":"Set up native app install banners in Chrome",
    "category":"google",
    "summary":"Get the details you need to add your native app or game to your site’s web app manifest file.",
    "url":"https://developers.google.com/web/updates/2015/03/increasing-engagement-with-app-install-banners-in-chrome-for-android#native",
    "group":"",
    "keywords": [],
    "tags": [],
    "image":"images/cards/google-play_2x.png",
    "type":"distribute"
  },
  {
    "title":"Optimize your store listing pages with experiments",
    "category":"google",
    "summary":"You can run experiments to find the most effective graphics and localized text for your app.",
    "url":"https://support.google.com/googleplay/android-developer/answer/6227309",
    "group":"",
    "keywords": [],
    "tags": [],
    "image":"images/cards/google-play_2x.png",
    "type":"distribute"
  },
  {
    "title":"Content Experiments for Mobile Apps",
    "category":"google",
    "summary":"Google Analytics Content Experiments allows you to test multiple variations of a given web page.",
    "url":"https://support.google.com/tagmanager/answer/6003007",
    "group":"",
    "keywords": [],
    "tags": [],
    "image":"images/cards/google-play_2x.png",
    "type":"distribute"
  },
  {
    "title":"Use alpha/beta testing & staged rollouts",
    "category":"google play",
    "summary":"Using the Google Play Developer Console, you can choose groups of users to test different versions of your app.",
    "url":"https://support.google.com/googleplay/android-developer/answer/3131213",
    "group":"",
    "keywords": [],
    "tags": [],
    "image":"images/cards/google-play_2x.png",
    "type":"distribute"
  },
  {
    "title":"Quizlet Developer Story",
    "category":"google play",
    "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":"https://i1.ytimg.com/vi/Idu7VcTTXfk/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"What's New in GPFE",
    "category":"google play",
    "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":"https://i1.ytimg.com/vi/IKhU180eJMo/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Get started with Google Cast",
    "category":"google",
    "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":"develop"
  },
  {
    "title":"Android Sender Applications",
    "category":"google",
    "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":"develop"
  },
  {
    "title":"Cast sample apps",
    "category":"google",
    "summary":"Get example Google Cast applications for both senders and receivers.",
    "url":"https://www.github.com/googlecast",
    "group":"",
    "keywords": ["cast", "samples"],
    "tags": [],
    "image":"images/cards/card-cast_2x.jpg",
    "type":"Samples"
  },
  {
    "title":"Get Cardboard",
    "category":"Google",
    "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":"develop"
  },
    {
    "title":"Download the Cardboard SDK",
    "category":"google",
    "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":"develop"
  },
  {
    "title":"Cardboard design guidelines",
    "category":"design",
    "summary":"Focus on overall usability and avoiding common VR pitfalls while creating an immersive experience of your own.",
    "url":"https://www.google.com/design/spec-vr",
    "group":"",
    "keywords": ["carboard","vr"],
    "tags": [],
    "image":"images/cards/card-cardboard_2x.png",
    "type":"Design"
  },
  {
    "title":"Maps",
    "category":"google",
    "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":"develop"
  },
    {
    "title":"Places API",
    "category":"google",
    "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":"develop"
  },
  {
    "title":"GCM Client for Android",
    "category":"google",
    "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":"develop"
  },
  {
    "title":"Google Cloud Messaging",
    "category":"google",
    "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":"develop"
  },
  {
    "title":"ClassDojo Developer Story",
    "category":"developer story",
    "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":"https://i1.ytimg.com/vi/iokH4SAIfRw/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Plan for Success",
    "category":"google play",
    "summary":"5 tips from developers on creating great EDU apps.",
    "url":"https://www.youtube.com/watch?v=Eh2adsAyTKc",
    "group":"",
    "keywords": [],
    "tags": [
      "#gpfe",
      "#googleplay"
    ],
    "image":"https://i1.ytimg.com/vi/Eh2adsAyTKc/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Optimizing Apps for Education",
    "category":"google play",
    "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":"https://i1.ytimg.com/vi/_AZ6UcPz-_g/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Ideas and Tools for Building Innovative Education Apps",
    "category":"google play",
    "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":"https://i1.ytimg.com/vi/iulXz8QTD1g/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"DesignBytes: Intro To Material Design",
    "category":"material design",
    "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":"https://www.youtube.com/watch?v=p4gmvHyuZzw",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/p4gmvHyuZzw/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"DesignBytes: Paper and Ink: The Materials that Matter",
    "category":"material design",
    "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":"https://www.youtube.com/watch?v=YaG_ljfzeUw",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/YaG_ljfzeUw/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"DesignBytes: Material Design in the Google I/O App",
    "category":"",
    "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":"https://www.youtube.com/watch?v=XOcCOBe8PTc",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/XOcCOBe8PTc/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Toolbars for a flexible Action Bar & more",
    "category":"",
    "summary":"Toolbars are a flexible View you can add to your Android app which provides many of the same APIs as the system provided Action Bar, but can also do so much more such as reacting to scrolling or being integrated directly into your layouts.",
    "url":"https://www.youtube.com/watch?v=kmUGLURRPkI",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/kmUGLURRPkI/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Protecting Implicit Intents with Runtime Checks",
    "category":"",
    "summary":"Make sure you protect your implicit intents with a simple runtime check.",
    "url":"https://www.youtube.com/watch?v=HGElAW224dE",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/HGElAW224dE/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Tabs and ViewPager",
    "category":"",
    "summary":"Showing multiple screens or pages of content is easy with the help of ViewPager and a PagerAdapter. Combining that with tabs make for an effective top level navigation strategy for your app or for moving between content at the same level of hierarchy within your app.",
    "url":"https://www.youtube.com/watch?v=zQekzaAgIlQ",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/zQekzaAgIlQ/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Battery Drain and Networking",
    "category":"",
    "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":"https://www.youtube.com/watch?v=fEEulSk1kNY",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/fEEulSk1kNY/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Batching Background Work Until Later",
    "category":"",
    "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":"https://www.youtube.com/watch?v=-3ry8PxcJJA",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/-3ry8PxcJJA/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"The Performance Lifecycle",
    "category":"",
    "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":"https://www.youtube.com/watch?v=_kKTGK-Cb_4",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/_kKTGK-Cb_4/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Introduction to Android Studio",
    "category":"",
    "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":"https://i1.ytimg.com/vi/K2dodTXARqc/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Instant Run: An Android Tool Time Deep Dive",
    "category":"",
    "summary":"Instant Run is an Android Studio feature that significantly reduces the time for building and deploying incremental code changes during your coding / testing / debugging lifecycle.",
    "url":"https://www.youtube.com/watch?v=StqAZ1OQbqA&list=PLWz5rJ2EKKc_w6fodMGrA1_tsI3pqPbqa",
    "group":"",
    "keywords": ["studio", "tools"],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/StqAZ1OQbqA/maxresdefault.jpg",
    "type":"youtube"
  },
  {
    "title":"What’s New in Android Studio 2.1",
    "category":"",
    "summary":"Android Studio 2.1 is required to try out new features and APIs of the Android N developer preview including the new Jack compiler and Java 8 language support. It also includes performance improvements to Instant Run, and a number of bug fixes and stability improvements.",
    "url":"https://www.youtube.com/watch?v=ZOz_yr8Yxq8&list=PLWz5rJ2EKKc_w6fodMGrA1_tsI3pqPbqa",
    "group":"",
    "keywords": ["studio", "tools"],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/ZOz_yr8Yxq8/maxresdefault.jpg",
    "type":"youtube"
  },
  {
    "title":"10 Things You Didn’t Know You Could Do",
    "category":"",
    "summary":"This Android Tool Time pro-tip roundup with Reto Meier shows off expert Android Studio tips designed to help you write less code, and make every keystroke count",
    "url":"https://www.youtube.com/watch?v=eOV2owswDkE&list=PLWz5rJ2EKKc_w6fodMGrA1_tsI3pqPbqa",
    "group":"",
    "keywords": ["studio", "tools"],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/eOV2owswDkE/maxresdefault.jpg",
    "type":"youtube"
  },
  {
    "title":"Live Templates in Android Studio",
    "category":"",
    "summary":"Android Tool Time Protip: Use and create your own Live Templates in Android Studio to write more code with less keystrokes using Live Templates to insert common, templatized code snippets.",
    "url":"https://www.youtube.com/watch?v=4rI4tTd7-J8&list=PLWz5rJ2EKKc_w6fodMGrA1_tsI3pqPbqa",
    "group":"",
    "keywords": ["studio", "tools"],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/4rI4tTd7-J8/maxresdefault.jpg",
    "type":"youtube"
  },
  {
    "title":"Enable Android Studio's &quot;Dex In Process&quot; for Faster App Builds",
    "category":"",
    "summary":"Android Studio 2.1 enables Dex In Process, a feature that can dramatically improve all your build times. To take advantage of Dex In Process, you’ll need to modify your gradle.properties file and increase the amount of memory allocated to the Gradle Daemon VM by 1 Gb, to a minimum of 2 Gb, using the org.gradle.jvmargs property.",
    "url":"https://www.youtube.com/watch?v=-SY5nkNVUn0&list=PLWz5rJ2EKKc_w6fodMGrA1_tsI3pqPbqa",
    "group":"",
    "keywords": ["studio", "tools"],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/-SY5nkNVUn0/maxresdefault.jpg",
    "type":"youtube"
  },
  {
    "title":"Configuring Parallel Canary / Stable Android Studio Installations",
    "category":"",
    "summary":"Android Tool Time Protip: Maintain parallel Android Studio installations on canary and stable channels to take advantage of all the new hotness, without risking your stable dev environment.",
    "url":"https://www.youtube.com/watch?v=SBbWGxXCMqQ&list=PLWz5rJ2EKKc_w6fodMGrA1_tsI3pqPbqa",
    "group":"",
    "keywords": ["studio", "tools"],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/SBbWGxXCMqQ/maxresdefault.jpg",
    "type":"youtube"
  },
  {
    "title":"What’s New in Android Studio 2.0",
    "category":"",
    "summary":"Android Studio 2.0 is focused on making your workflow faster. Faster builds, faster deployment, faster emulators. Everything. Faster.",
    "url":"https://www.youtube.com/watch?v=xxx3Fn7EowU&list=PLWz5rJ2EKKc_w6fodMGrA1_tsI3pqPbqa",
    "group":"",
    "keywords": ["studio", "tools"],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/xxx3Fn7EowU/maxresdefault.jpg",
    "type":"youtube"
  },
  {
    "title":"Google Play Services 7.5",
    "category":"",
    "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":"https://i1.ytimg.com/vi/M3Udfu6qidk/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Google Play Services 7.3",
    "category":"",
    "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":"https://i1.ytimg.com/vi/FOn64iqlphk/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Google Play Services 6.5",
    "category":"",
    "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":"https://i1.ytimg.com/vi/fvtMtfCuEpw/maxresdefault.jpg",
    "type":"video"
  },
    {
    "title":"Google Play Services 7.0",
    "category":"",
    "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":"https://i1.ytimg.com/vi/F0Kh_RnSM0w/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Running a Successful Games Business with Google",
    "category":"",
    "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":"https://www.youtube.com/watch?v=tDmnGNkTtlE",
    "group":"",
    "keywords": [],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/tDmnGNkTtlE/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Introduction to Android TV",
    "category":"",
    "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":"https://i1.ytimg.com/vi/6K_jxccHv5M/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Introduction to Android Auto",
    "category":"",
    "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":"https://i1.ytimg.com/vi/ctiaVxgclsg/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Debugging and testing in Android Studio",
    "titleFriendly":"",
    "summary":"This video introduces the state of unit testing support in Studio and Google’s new Android Testing Support Library for functional UI testing and running instrumented tests on a device.",
    "url":"https://www.youtube.com/watch?v=2I6fuD20qlY",
    "group":"",
    "keywords": ["testing"],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/2I6fuD20qlY/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"Android Testing (Android Dev Summit 2015)",
    "titleFriendly":"",
    "summary":"Overview of the testing tools and frameworks provided by Google and how they can help you to iterate more quickly and maintain a more healthy codebase.",
    "url":"https://www.youtube.com/watch?v=vdasFFfXKOY",
    "group":"",
    "keywords": ["testing"],
    "tags": [
    ],
    "image":"https://i1.ytimg.com/vi/vdasFFfXKOY/maxresdefault.jpg",
    "type":"video"
  },
  {
    "title":"dumpsys",
    "titleFriendly":"",
    "summary":"A tool that runs on the device and provides information about the status of system services.",
    "url":"https://source.android.com/devices/tech/debug/dumpsys.html",
    "group":"",
    "keywords": ["testing"],
    "tags": [
    ],
    "image":"",
    "type":"google"
  },
  {
    "title":"Android Testing Samples",
    "titleFriendly":"",
    "summary":"A collection of samples demonstrating different frameworks and techniques for automated testing.",
    "url":"https://github.com/googlesamples/android-testing",
    "group":"",
    "keywords": ["testing"],
    "tags": [
    ],
    "image":"images/testing/testing-icon.png",
    "type":"Samples"
  },
  {
    "title":"Android Testing Templates",
    "titleFriendly":"",
    "summary":"A collection of Google's Android testing tools and frameworks, all integrated in a single application project.",
    "url":"https://github.com/googlesamples/android-testing-templates",
    "group":"",
    "keywords": ["testing"],
    "tags": [
    ],
    "image":"images/testing/testing-icon.png",
    "type":"Samples"
  },
   {
    "title":"Android Testing Support Library (GitHub)",
    "titleFriendly":"",
    "summary":"A resource page on GitHub for the Android Testing Support Library.",
    "url":"https://google.github.io/android-testing-support-library",
    "group":"",
    "keywords": ["testing"],
    "tags": [
    ],
    "image":"images/testing/testing-icon.png",
    "type":"Samples"
  },
  {
    "title":"Android Testing Codelab",
    "titleFriendly":"",
    "summary":"This codelab shows how to build an Android app from the ground up in Android Studio, using a Model View Presenter architecture, Unit Tests and Instrumentation Tests.",
    "url":"https://codelabs.developers.google.com/codelabs/android-testing/index.html",
    "group":"",
    "keywords": ["testing"],
    "tags": [
    ],
    "image":"images/testing/testing-icon.png",
    "type":"google"
  },
  {
    "title":"Developer Registration",
    "category":"google play",
    "summary":"Additional information about the registration process.",
    "url":"https://support.google.com/googleplay/android-developer/answer/113468",
    "group":"",
    "keywords": [],
    "tags": [],
    "image":"images/cards/google-play_2x.png",
    "type":"distribute"
  },
  {
    "title": "Google Play Distribution and Seller Countries",
    "category":"google play",
    "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/cards/google-play_2x.png",
    "type":"distribute"
  },
  {
    "title":"Google Play Content Policies",
    "category":"google play",
    "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/cards/google-play_2x.png",
    "type":"distribute"
  },
  {
    "title":"Google Play Badge Generator",
    "category":"google play",
    "summary":"Build badges for your app in just a few clicks, or download hi-res badge assets localized for a variety of languages.",
    "url":"https://play.google.com/intl/en_us/badges/",
    "group":"",
    "keywords": [],
    "tags": ["#developersupport"],
    "image":"images/gp-badges-set.png",
    "type":"distribute"
  },
  {
    "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",
    "category": "google play"
  },
  {
    "title":"Google Play Policy Center",
    "category":"google play",
    "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":"https://storage.googleapis.com/support-kms-prod/SNP_712EA2784949DDF085C46E3BE7B1DC618A09_4389397_en_v0",
    "type":"distribute"
  },
  {
    "title":"Developer Help Center",
    "category":"Support",
    "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":"distribute"
  },
  {
    "title":"Google for Education",
    "category":"google play",
    "summary":"Find out more about how Google can support your work with apps and tablets.",
    "url":"https://www.google.com/edu/tablets/",
    "group":"",
    "keywords": [],
    "tags": [],
    "image":"distribute/images/gp-edu-apps-image.jpg",
    "type":"google"
  },
  {
    "title":"Keeping Your App Responsive",
    "category":"performance",
    "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",
    "category":"google",
    "summary":"Make your games social with Google Play game services. Add achievements, leaderboards, real-time multiplayer, and other popular features using the Google Play game services SDK.",
    "url":"https://developers.google.com/games/services/",
    "group":"",
    "keywords": ["games","play games"],
    "tags": [],
    "image":"images/google/gps-play_games_logo.png",
    "type":"distribute"
  },
  {
    "title":"Get Started with Analytics",
    "category":"google",
    "summary":"Get advanced insight into how players discover and play your games.",
    "url":"distribute/analyze/start.html",
    "group":"",
    "keywords": ["analytics"],
    "tags": [],
    "image": "images/cards/analytics-mobile_2x.jpg",
    "type": "distribute"
  },
  {
    "title":"Monetize your apps intelligently",
    "category":"google",
    "summary":"Generate revenue from your free games with ads tailored to match your game's look and feel.",
    "url":"https://www.google.com/admob/",
    "group":"",
    "keywords": ["AdMob"],
    "tags": [],
    "image":"images/cards/admob-analytics_2x.png",
    "type": "distribute"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [
      "versions", "blog", "googleplay"
    ],
    "url": "https://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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://play.google.com/about/developer-content-policy.html",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "Developer Program Policies",
    "summary": "Guidelines acceptable content in Google Play. Please read and understand the policies before publishing.",
    "keywords": [],
    "type": "distribute",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/188189",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "Rating your application content for Google Play",
    "summary": "How to choose the appropriate content ratings level for your apps.",
    "keywords": [],
    "type": "distribute",
    "category": "Support"
  },
  {
    "lang": "en",
    "group": "",
    "tags": ["devices", "nexus", "testing"],
    "url": "https://developers.google.com/android/nexus/images",
    "timestamp": 1194884220000,
    "image": "images/cards/card-download_16-9_2x.png",
    "title": "Factory Images for Nexus Devices",
    "summary": "System image files for Android 6.0 and other Android releases.",
    "keywords": ["nexus, downloads"],
    "type": "develop",
    "category": "Tools"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://android-developers.blogspot.com/2011/10/android-market-featured-image.html",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "Google Play Featured Image Guidelines",
    "summary": "How to create attractive, effective Featured Images for your apps.",
    "keywords": [],
    "type": "distribute",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/113477",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "Supporting your users",
    "summary": "Options for supporting users.",
    "keywords": [],
    "type": "distribute",
    "category": "Support"
  },
  {
    "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": "develop",
    "category": "guide"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "training/design-navigation/multiple-sizes.html",
    "timestamp": 1194884220000,
    "image": null,
    "title": "Planning for Multiple Touchscreen Sizes",
    "summary": "",
    "keywords": [],
    "type": "develop",
    "category": "guide"
  },
  {
    "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": "develop",
    "category": "guide"
  },
  {
    "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": "develop",
    "category": "guide"
  },
  {
    "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": "develop",
    "category": "guide"
  },
  {
    "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": "develop",
    "category": "guide"
  },
  {
    "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": "develop",
    "category": "compatibility"
  },
  {
    "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": "develop",
    "category": "compatibility"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "training/material/animations.html#Touch",
    "timestamp": 1194884220000,
    "image": null,
    "title": "Customize Touch Feedback",
    "summary": "Provide visual confirmation when users interact with your UI.",
    "keywords": [],
    "type": "develop",
    "category": "guide"
  },

  {
    "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": "develop",
    "category": "compatibility"
  },
  {
    "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": "distribute",
    "category": "Google Play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://youtu.be/SkHHPf3EdzE",
    "timestamp": 1194884220000,
    "image": "https://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": "video",
    "category": ""
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://play.google.com/about/developer-distribution-agreement.html",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "Developer Distribution Agreement",
    "summary": "Terms for distributing and selling apps and in-app products in Google Play.",
    "keywords": [],
    "type": "distribute",
    "category": "google play"
  },
  {
    "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": "distribute",
    "category": "google play"
  },
  {
    "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": "distribute",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://play.google.com/about/developer-distribution-agreement-addendum.html",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "Google Play for Education Addendum",
    "summary": "Review the education-specific requirements.",
    "keywords": [],
    "type": "distribute",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://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": "blog",
    "category": "Localization"
  },
  {
    "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": "develop",
    "category": "Localization"
  },
  {
    "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": "develop",
    "category": "Localization"
  },
    {
    "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": ["localization"],
    "type": "develop",
    "category": "guide"
  },
  {
    "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": "distribute",
    "category": "localization"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "distribute/googleplay/policies/index.html",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "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": "distribute",
    "category": "google play "
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/topic/2364761",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "Policy and Best Practices",
    "summary": "Help Center document describing various content policies and processes.",
    "keywords": [],
    "type": "distribute",
    "category": "google play"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/1169947",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "Selling Apps in Multiple Currencies",
    "summary": "Help Center document describing how pricing works in Google Play.",
    "keywords": [],
    "type": "distribute",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/138412",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "Prices and supported currencies",
    "summary": "Help Center document listing supported currencies for pricing your apps.",
    "keywords": [],
    "type": "distribute",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/112622",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "Transaction Fees",
    "summary": "Help Center document describing transaction fees for priced apps and in-app products.",
    "keywords": [],
    "type": "distribute",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/138000",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "Specifying tax rates",
    "summary": "Help Center document describing how to set tax rates for different countries.",
    "keywords": [],
    "type": "distribute",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "guide/topics/resources/localization.html",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "Localizing with Resources",
    "summary": "Developer guide to localizing resources in your app.",
    "keywords": [],
    "type": "develop",
    "category": "localization"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/113475",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "Category types",
    "summary": "Help Center document listing available categories for apps.",
    "keywords": [],
    "type": "distribute",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/113476",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "Updates",
    "summary": "Requirements for app updates in Google Play.",
    "keywords": [],
    "type": "distribute",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/1153479",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "In-app Billing",
    "summary": "Help Center document describing how to correctly set up In-app Billing.",
    "keywords": [],
    "type": "distribute",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [
      "#gpfe",
      "#googleplay"
    ],
    "url": "https://youtu.be/vzvpcEffvaE",
    "timestamp": 1383243492000,
    "image": "https://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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [
      "#engagement",
    ],
    "url": "https://www.youtube.com/yt/dev/",
    "timestamp": 1383243492000,
    "image": "https://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": "video",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [
      "#engagement",
    ],
    "url": "https://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": "distribute",
    "category": "google"
  },


  {
    "lang": "en",
    "group": "",
    "tags": [
      "#gcm",
    ],
    "url": "https://www.youtube.com/watch?v=y76rjidm8cU",
    "timestamp": 1383243492000,
    "image": "https://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",
    "category": "google"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [
      "gcm",
    ],
    "url": "https://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": "distribute",
    "category": "google"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [
      ""
    ],
    "url": "https://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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [
      ""
    ],
    "url": "https://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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [
      ""
    ],
    "url": "https://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",
    "category": ""
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/2528691",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "How to add multiple user accounts to your Developer Console for testing and more.",
    "summary": "",
    "keywords": [],
    "type": "distribute",
    "category": "google play"
  },
  {
    "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": "distribute",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "design/style/writing.html",
    "timestamp": 1194884220000,
    "image": null,
    "title": "Writing Style",
    "summary": "Design guidelines for voice and style in your UI.",
    "keywords": [],
    "type": "design",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://en.wikipedia.org/wiki/XLIFF",
    "timestamp": 1194884220000,
    "image": null,
    "title": "XML Localisation Interchange File Format (XLIFF)",
    "summary": "Background information on XLIFF.",
    "keywords": [],
    "type": "develop",
    "category": "localization"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/googleplay/android-developer/answer/1078870",
    "timestamp": 1194884220000,
    "image": "images/cards/google-play_2x.png",
    "title": "Graphic Assets for your Application",
    "summary": "Details about the graphics you can add to your product listing.",
    "keywords": [],
    "type": "distribute",
    "category": "google play"
  },
  {
    "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": "distribute",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://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",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": ["localization", "pricing", "developer support"],
    "url": "https://support.google.com/googleplay/android-developer/table/3541286",
    "timestamp": null,
    "image": "images/cards/google-play_2x.png",
    "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",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": ["games", "localization", "quality"],
    "url": "https://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",
    "category": "google play"
  },
  {
    "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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": ["monetize", "ads"],
    "url": "https://www.google.com/doubleclick/publishers/small-business/index.html",
    "timestamp": null,
    "image": "https://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",
    "category": "google"
  },
  {
    "lang": "en",
    "group": "",
    "tags": ["monetize", "ads"],
    "url": "https://support.google.com/googleplay/android-developer/topic/2985714",
    "timestamp": null,
    "image":"images/cards/google-play_2x.png",
    "title": "Policy Center: Ads",
    "summary": "Introduction to ads and system interference policies in Google Play.",
    "keywords": ["ads"],
    "type": "distribute",
    "category": "google play"
  },
  {
    "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",
    "category": "google"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://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",
    "category": "google"
  },
  {
    "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",
    "category": "google"
  },
  {
    "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",
    "category": "google play"
  },
  {
    "lang": "en",
    "group": "",
    "tags": ["monetize", "paymentmethods"],
    "url": "https://support.google.com/googleplay/answer/2651410",
    "timestamp": null,
    "image": "images/cards/google-play_2x.png",
    "title": "Google Play Accepted Payment Methods",
    "summary": "Support details on the payment methods supported in Google Play.",
    "keywords": ["gift card"],
    "type": "distribute",
    "category": "google play"
  },
  {
    "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": "develop",
    "category": "Social"
  },
  {
    "lang": "en",
    "group": "",
    "tags": ["plus", "social"],
    "url": "https://plus.google.com/+GooglePlay",
    "timestamp": null,
    "image": "images/cards/google-play_2x.png",
    "title": "+Google Play",
    "summary": "News and discussion about Google Play, apps, and other content in Google+.",
    "keywords": ["+GooglePlay"],
    "type": "distribute",
    "category": "Social"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/edu/guidelines",
    "timestamp": null,
    "image": "https://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": "",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://developers.google.com/edu/faq",
    "timestamp": null,
    "image": "https://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": "",
    "category": ""
  },
  {
    "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": "",
    "category": ""
  },
  {
    "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": "",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://storage.googleapis.com/androiddevelopers/shareables/stories/Glu_Deerhunter2014_gpgs.pdf",
    "timestamp": null,
    "image": "https://storage.googleapis.com/androiddevelopers/shareables/stories/Glu_Deerhunter2014_gpgs.png",
    "title": "Deer Hunter 2014 by Glu &mdash; 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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://storage.googleapis.com/androiddevelopers/shareables/stories/ConcreteSoftware_PBABowling_gpgs.pdf",
    "timestamp": null,
    "image": "https://storage.googleapis.com/androiddevelopers/shareables/stories/ConcreteSoftware_PBABowling_gpgs.png",
    "title": "PBA® Bowling Challenge by Concrete Software &mdash; 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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://storage.googleapis.com/androiddevelopers/shareables/stories/Dragonplay_DragonplaySlots_gpgs.pdf",
    "timestamp": null,
    "image": "https://storage.googleapis.com/androiddevelopers/shareables/stories/Dragonplay_DragonplaySlots_gpgs.png",
    "title": "Dragonplay Slots by Dragonplay &mdash; 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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://storage.googleapis.com/androiddevelopers/shareables/stories/Gameloft_Asphalt8_gpgs.pdf",
    "timestamp": null,
    "image": "https://storage.googleapis.com/androiddevelopers/shareables/stories/Gameloft_Asphalt8_gpgs.png",
    "title": "Asphalt 8 by Gameloft &mdash; 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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://storage.googleapis.com/androiddevelopers/shareables/stories/Glu_EternityWarriors3_gpgs.pdf",
    "timestamp": null,
    "image": "https://storage.googleapis.com/androiddevelopers/shareables/stories/Glu_EternityWarriors3_gpgs.png",
    "title": "Eternity Warriors 3 by Glu &mdash; 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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://storage.googleapis.com/androiddevelopers/shareables/stories/HotheadGames_RivalsatWar_gpgs.pdf",
    "timestamp": null,
    "image": "https://storage.googleapis.com/androiddevelopers/shareables/stories/HotheadGames_RivalsatWar_gpgs.jpg",
    "title": "Rivals at War: Firefight by Hothead Games &mdash; 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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://storage.googleapis.com/androiddevelopers/shareables/stories/TMSOFT_Compulsive_gpgs.pdf",
    "timestamp": null,
    "image": "https://storage.googleapis.com/androiddevelopers/shareables/stories/TMSOFT_Compulsive_gpgs.png",
    "title": "Compulsive by TMSOFT &mdash; 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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://storage.googleapis.com/androiddevelopers/shareables/stories/Noodlecake_SuperStickmanGolf2_gpgs.pdf",
    "timestamp": null,
    "image": "https://storage.googleapis.com/androiddevelopers/shareables/stories/Noodlecake_SuperStickmanGolf2_gpgs.png",
    "title": "Super Stickman Golf 2 by Noodlecake Studios &mdash; Multiplayer",
    "summary": "Noodlecake Studios finds that Google Play Game Services’ multiplayer feature helps reduce attrition.",
    "keywords": ["stories"],
    "type": "Case Study Deck",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://storage.googleapis.com/androiddevelopers/shareables/stories/TinyRebel_DoctorWhoLegacy_gpgs.pdf",
    "timestamp": null,
    "image": "https://storage.googleapis.com/androiddevelopers/shareables/stories/TinyRebelGames_DrWhoLegacy_pgps.png",
    "title": "Dr. Doctor Who: Legacy by Tiny Rebel Games &mdash; 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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://storage.googleapis.com/androiddevelopers/shareables/stories/Senri_LeosFortune_gpgs.pdf",
    "timestamp": null,
    "image": "https://storage.googleapis.com/androiddevelopers/shareables/stories/Senri_LeosFortune_gpgs.png",
    "title": "Leo’s Fortune by 1337 &amp; Senri &mdash; 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",
    "category": ""
  },
  {
    "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",
    "category": ""
  },
  {
    "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",
    "category": ""
  },
  {
    "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",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "http://www.youtube.com/watch?v=RRelFvc6Czo",
    "timestamp": null,
    "image": "https://i1.ytimg.com/vi/RRelFvc6Czo/maxresdefault.jpg",
    "title": "Android Developer Story: Smule",
    "summary": "The creators of AutoRap, Magic Piano, and Songify talk about their experiences launching on Android and the explosive global growth they've seen on Google Play.",
    "keywords": ["success", "users"],
    "type": "video",
    "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": "distribute",
    "category": ""
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://www.google.com/tagmanager/",
    "timestamp": null,
    "image": "https://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": "distribute",
    "category": ""
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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",
    "category": ""
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/analytics/answer/2956981",
    "timestamp": null,
    "image": "images/cards/google-play_2x.png",
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/tagmanager/answer/6003007",
    "timestamp": null,
    "image": "https://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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://support.google.com/analytics/answer/2611268",
    "timestamp": null,
    "image": "images/cards/analytics-mobile_2x.jpg",
    "title": "Audience Lists &amp; 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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "design",
    "category": "material design"
  },
  {
    "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": "design",
    "category": "material design"
  },
  {
    "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": "design",
    "category": "material design"
  },
  {
    "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": "design",
    "category": "material design"
  },
  {
    "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": "design",
    "category": "material design"
  },
  {
    "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": "design",
    "category": "material design"
  },
  {
    "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": "design",
    "category": "material design"
  },
  {
    "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": "design",
    "category": "material design"
  },
  {
    "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": "design",
    "category": "material design"
  },
  {
    "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": "design",
    "category": "material design"
  },
  {
    "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": "design",
    "category": "material design"
  },

  {
    "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",
    "category": "google"
  },
  {
    "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",
    "category": "google"
  },
  {
    "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",
    "category": "google"
  },
  {
    "lang": "en",
    "group": "",
    "tags": [
      "marketing",
      "engagement",
      "translate"
    ],
    "url": "https://support.google.com/l10n/answer/6359997",
    "timestamp": null,
    "image": "images/play_dev.jpg",
    "title": "Use the App Translation Service",
    "summary": "The App Translation Service is a human translation service. It makes it easy to order translations for app UI strings, Play Store text, in-app purchase products, and universal app campaign ads.",
    "keywords": [
      "marketing",
      "engagement",
      "translate"
    ],
    "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",
    "category": "google"
  },
  {
    "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",
    "category": "google"
    },
    {
    "lang": "en",
    "group": "",
    "tags": [],
    "url": "https://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",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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",
    "category": "google"
  },
  {
    "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",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },

  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },
  {
    "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": "distribute",
    "category": "google"
  },

 // Online courses

 {
    "title":"UX Design for Mobile Developers",
    "category":"online course",
    "summary":"Learn how to design a 5-star app.",
    "url":"https://www.udacity.com/course/ud849",
    "group":"",
    "keywords": ["mobile","ux","design"],
    "tags": ["courses, start"],
    "image":"images/cards/courses/mobile_ux_course.jpg",
    "lang":"en",
    "type":"design"
  },
  {
    "title":"Developing Android Apps",
    "category":"online course",
    "summary":"Learn Android and build an app!",
    "url":"https://www.udacity.com/course/ud853",
    "group":"",
    "keywords": ["android", "start","firstapp","sdk"],
    "tags": ["courses, start"],
    "image":"images/cards/courses/android_fundamentals_course.jpg",
    "lang":"en",
    "type":"develop"
  },
  {
    "title":"Android Performance",
    "category":"online course",
    "summary":"Optimize your apps for speed and usability.",
    "url":"https://www.udacity.com/course/ud825",
    "group":"",
    "keywords": ["android, performance","battery"],
    "tags": ["courses, performance"],
    "image":"images/cards/courses/android_performance_course.jpg",
    "lang":"en",
    "type":"develop"
  },
  {
    "title":"Enroll in the Android Nanodegree",
    "category":"online course",
    "summary":"Enroll in the Android Nanodegree to build the skills to work as an Android developer.",
    "url":"https://www.udacity.com/android",
    "group":"",
    "keywords": ["android, nanodegree"],
    "tags": ["courses"],
    "image":"images/cards/courses/android_nanodegree.png",
    "lang":"en",
    "type":"develop"
  },
  {
    "title":"Advanced Android App Development",
    "category":"online course",
    "summary":"Productionize and publish your apps.",
    "url":"https://www.udacity.com/course/ud855",
    "group":"",
    "keywords": ["android, experts"],
    "tags": ["courses, expert"],
    "image":"images/cards/courses/advanced_android_course.jpg",
    "lang":"en",
    "type":"develop"
  },
  {
    "title":"Material Design for Android Developers",
    "category":"online course",
    "summary":"Learn how to make your apps material.",
    "url":"https://www.udacity.com/course/ud862",
    "group":"",
    "keywords": ["android, design, pure, material"],
    "tags": ["courses, start, material"],
    "image":"images/cards/courses/android_design_course.jpg",
    "lang":"en",
    "type":"design"
  },
  {
    "title":"Android for Beginners",
    "category":"online course",
    "summary":"Make your first Android app, even if you don't write code.",
    "url":"https://www.udacity.com/course/ud837",
    "group":"",
    "keywords": ["android, sdk, firstapp"],
    "tags": ["courses, start"],
    "image":"images/cards/courses/beginning_android_course.jpg",
    "lang":"en",
    "type":"develop"
  },
  {
    "title":"Gradle for Android and Java",
    "category":"online course",
    "summary":"Build better apps through automation",
    "url":"https://www.udacity.com/course/ud867",
    "group":"",
    "keywords": ["gradle","studio", "sdk"],
    "tags": ["courses, gradle, sdk"],
    "image":"images/cards/courses/gradle_course.jpg",
    "lang":"en",
    "type":"develop"
  },
  {
    "title":"Add Location and Context to your app",
    "category":"online course",
    "summary":"Make Your Android App Location Aware.",
    "url":"https://www.udacity.com/course/ud876-1",
    "group":"",
    "keywords": ["google services, context, location"],
    "tags": ["courses, google, location, context"],
    "image":"images/cards/courses/android_location_course.png",
    "lang":"en",
    "type":"develop"
  },
  {
    "title":"Analytics and Tag Manager for Android",
    "category":"online course",
    "summary":"Use Analytics and Tag Manager in Your Apps.",
    "url":"https://www.udacity.com/course/ud876-2",
    "group":"",
    "keywords": ["google services, analytics, tag manager"],
    "tags": ["courses, google, analytics"],
    "image":"images/cards/courses/android_analytics_course.png",
    "lang":"en",
    "type":"distribute"
  },
  {
    "title":"AdMob for Android",
    "category":"online course",
    "summary":"Monetize Your App by Displaying Ads.",
    "url":"https://www.udacity.com/course/ud876-3",
    "group":"",
    "keywords": ["monetize, google services, ads, admob"],
    "tags": ["courses, google, ads, admob"],
    "image":"images/cards/courses/admob_course.png",
    "lang":"en",
    "type":"distribute"
  },
  {
    "title":"Add Maps to your Android app",
    "category":"online course",
    "summary":"Use maps, cameras, markers and more in your app.",
    "url":"https://www.udacity.com/course/ud876-4",
    "group":"",
    "keywords": ["google, maps, marker, camera"],
    "tags": ["courses, google, maps"],
    "image":"images/cards/courses/android_maps_course.png",
    "lang":"en",
    "type":"develop"
  },
  {
    "title":"Add Sign-in to your Android app",
    "category":"online course",
    "summary":"Build a Seamless Sign-In Experience.",
    "url":"https://www.udacity.com/course/ud876-5",
    "group":"",
    "keywords": ["google services, signin, authorization"],
    "tags": ["courses, google, auth"],
    "image":"images/cards/courses/android_identity_course.png",
    "lang":"en",
    "type":"develop"
  },
  {
    "title":"Android Wear Development",
    "category":"online course",
    "summary":"Extend your Apps to Android Smartwatches.",
    "url":"https://www.udacity.com/course/ud875A",
    "group":"",
    "keywords": ["wear, wearables, smartwatch"],
    "tags": ["courses, wear, wearable"],
    "image":"images/cards/courses/android_wear_course.jpg",
    "lang":"en",
    "type":"develop"
  },
  {
    "title":"Android TV and Google Cast Development",
    "category":"online course",
    "summary":"Extend your Apps to the Big Screen.",
    "url":"https://www.udacity.com/course/ud875B",
    "group":"",
    "keywords": ["cast, living room"],
    "tags": ["courses, cast, tv"],
    "image":"images/cards/courses/android_tv_cast_course.jpg",
    "lang":"en",
    "type":"develop"
  },
  {
    "title":"Android Auto Development",
    "category":"online course",
    "summary":"Put your apps in the driver's seat.",
    "url":"https://www.udacity.com/course/ud875C",
    "group":"",
    "keywords": ["auto"],
    "tags": ["courses, auto"],
    "image":"images/cards/courses/android_auto_course.jpg",
    "lang":"en",
    "type":"develop"
  },


 // TODO remove this?
  {
    "title":"Android Wear Materials",
    "category":"design",
    "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":"video"
  },
  {
    "title":"Watch Faces for Android Wear",
    "category":"design",
    "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":"https://i1.ytimg.com/vi/AK38PJZmIW8/maxresdefault.jpg",
    "lang":"en",
    "type":"video"
  },
  {
    "title":"Android Support Library",
    "category":"Tools",
    "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":"https://i1.ytimg.com/vi/3PIc-DuEU2s/maxresdefault.jpg",
    "lang":"en",
    "type":"video"
  },
  {
    "title":"Consistent Design with the AppCompat Support Library",
    "category":"design",
    "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":"https://i1.ytimg.com/vi/5Be2mJzP-Uw/maxresdefault.jpg",
    "lang":"en",
    "type":"video"
  },
  {
    "title":"Introducing Gradle",
    "category":"tools",
    "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":"https://i1.ytimg.com/vi/cD7NPxuuXYY/maxresdefault.jpg",
    "lang":"en",
    "type":"video"
  },
  {
    "title":"Android Studio Layout Editor",
    "category":"tools",
    "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":"https://i1.ytimg.com/vi/JLLnhwtDoHw/maxresdefault.jpg",
    "lang":"en",
    "type":"video"
  },
  {
    "title":"Debugging and testing in Android Studio",
    "category":"tools",
    "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":"https://i1.ytimg.com/vi/2I6fuD20qlY/maxresdefault.jpg",
    "lang":"en",
    "type":"video"
  },
  {
    "title":"Scale with Google Cloud Platform",
    "category":"google",
    "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",
    "category":"Google Play",
    "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": "Develop apps for Android for Work to take advantage of security and management features built into Android.",
    "url":"https://developer.android.com/work",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"images/work/cards/briefcase_600px.png",
    "lang":"en",
    "type":"work"
  },
  {
    "title":"Android for Work Developer Overview",
    "titleFriendly":"",
    "summary": "Learn how to build Android apps for the enterprise and take advantage of Google's Android for Work program.",
    "url":"https://developer.android.com/work/overview.html",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"images/work/cards/briefcase_600px.png",
    "lang":"en",
    "type":"guide"
  },
  {
    "title":"Android for Work Developer Guide",
    "titleFriendly":"",
    "summary": "Android for Work provides organizations with a secure, flexible, and unified Android mobility platform combining devices, applications, and management.",
    "url":"https://developer.android.com/work/guide.html",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"images/work/cards/android-studio_600px.png",
    "lang":"en",
    "type":"guide"
  },
  {
    "title":"Set up Managed Configurations",
    "titleFriendly":"",
    "summary": "Learn how to implement managed configurations that can be changed by other apps on the same device.",
    "url":"https://developer.android.com/work/managed-restrictions.html",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"images/work/cards/briefcase_600px.png",
    "lang":"en",
    "type":"guide"
  },
  {
    "title":"Set up Managed Profiles",
    "titleFriendly":"",
    "summary": "Learn how to make sure your apps operate smoothly in a corporate environment by following some best practices.",
    "url":"https://developer.android.com/work/managed-profiles.html",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"images/work/cards/briefcase_600px.png",
    "lang":"en",
    "type":"guide"
  },
  {
    "title":"Set up Single-Purpose Devices",
    "titleFriendly":"",
    "summary": "Learn how to develop single-use solutions for Android devices.",
    "url":"https://developer.android.com/work/cosu.html",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"images/work/cards/briefcase_600px.png",
    "lang":"en",
    "type":"guide"
  },
  {
    "title":"Join the Android for Work DevHub",
    "titleFriendly":"",
    "summary":"The Android for Work DevHub is a place to help developers keep up with Android in the workplace.",
    "url":"https://www.google.com/work/android/developers/applyDevHub/",
    "group":"",
    "keywords": ["work", "enterprise", "isv", "devhub"],
    "tags": [],
    "image":"images/work/cards/work-devhub_600px.png",
    "lang":"en",
    "type":"Community"
  },
  {
    "title":"Enterprise Mobility Managers",
    "titleFriendly":"",
    "summary":"Integrate Android for Work into your enterprise mobility management (EMM) solution.",
    "url":"https://developers.google.com/android/work/",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"images/work/cards/work-cloud_600px.png",
    "lang":"en",
    "type":"guide"
  },
  {
    "title":"Learn More About Android for Work",
    "titleFriendly":"",
    "summary":"Learn more about how Android for Work makes your favorite phones and tablets the perfect business tools.",
    "url":"https://www.google.com/work/android/",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"images/work/cards/work-profile_600px.png",
    "lang":"en",
    "type":"about"
  },
  {
    "title":"Build a Device Policy Controller",
    "titleFriendly":"",
    "summary":"Learn how to develop a Device Policy Controller to create and administer a managed profile on an employee's device.",
    "url":"https://developers.google.com/android/work/build-dpc",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"images/work/cards/work-folder_600px.png",
    "lang":"en",
    "type":"guide"
  },
  {
    "title":"Android for Work for Developers",
    "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":"https://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":"https://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&list=PLOU2XLYxmsIKAK2Bhv19H2THwF-22O5WX",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"https://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":"https://i1.ytimg.com/vi/j3QC6hcpy90/maxresdefault.jpg",
    "lang":"en",
    "type":"youtube"
  },
  {
    "title":"Your Apps at Work",
    "titleFriendly":"",
    "summary":"In this Google I/O 2016 session we’ll give you details for making your app more attractive to businesses.",
    "url":"https://www.youtube.com/watch?v=Za0OQo8DRM4",
    "group":"",
    "keywords": ["work", "enterprise", "emm"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/Za0OQo8DRM4/maxresdefault.jpg",
    "lang":"en",
    "type":"youtube"
  },
  {
    "title":"Discover YouTube cards",
    "category":"google",
    "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?",
    "category":"Google",
    "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"
  },
  {
    "title":"What’s New in Android N Developer Preview",
    "category":"preview",
    "summary":"Learn all about the new features in the Android N Preview.",
    "url":"https://www.youtube.com/watch?v=CsulIu3UaUM",
    "group":"",
    "keywords": ["androidn"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/CsulIu3UaUM/maxresdefault.jpg",
    "lang":"en",
    "type":"youtube"
  },
  {
    "title":"Developing for Android 6.0 (Marshmallow)",
    "category":"",
    "summary":"This video covers how to get started with the preview, important APIs to test and how to provide feedback on the preview.",
    "url":"https://www.youtube.com/watch?v=yYU4DHLwoRk",
    "group":"",
    "keywords": ["Marshmallow"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/yYU4DHLwoRk/maxresdefault.jpg",
    "lang":"en",
    "type":"video"
  },
  {
    "title":"Google I/O 2015 - What's new in Android",
    "category":"",
    "summary":"This session will highlight the most exciting new developer features of the Android platform.",
    "url":"https://www.youtube.com/watch?v=ndBdf1_oOGA",
    "group":"",
    "keywords": ["Marshmallow"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/ndBdf1_oOGA/maxresdefault.jpg",
    "lang":"en",
    "type":"video"
  },
  {
    "title":"Fingerprint and payments APIs",
    "category":"",
    "summary":"New fingerprint and payments APIs are introduced in M, to enable enhanced UX and security for online purchasing, banking, and retail payments.",
    "url":"https://www.youtube.com/watch?v=VOn7VrTRlA4",
    "group":"",
    "keywords": ["Marshmallow"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/VOn7VrTRlA4/maxresdefault.jpg",
    "lang":"en",
    "type":"video"
  },
  {
    "title":"Introduction to Voice Interaction API",
    "category":"",
    "summary":"This video covers how to use the Voice Interaction API to support system or custom voice actions.",
    "url":"https://www.youtube.com/watch?v=OW1A4XFRuyc",
    "group":"",
    "keywords": ["Marshmallow"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/OW1A4XFRuyc/maxresdefault.jpg",
    "lang":"en",
    "type":"video"
  },
  {
    "title":"Android Auto Backup for Apps",
    "category":"",
    "summary":"Android Backup is the automatic, cloud-based backup and restore of users’ apps when they set up a new device.",
    "url":"https://www.youtube.com/watch?v=HXacyy0HSW0",
    "group":"",
    "keywords": ["Marshmallow"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/HXacyy0HSW0/maxresdefault.jpg",
    "lang":"en",
    "type":"video"
  },
  {
    "title":"New APIs in M for Android for Work",
    "category":"",
    "summary":"Android M extends Android for Work functionality with a new set of APIs for Enterprise Mobility Management providers to offer new features and policy controls to IT Departments.",
    "url":"https://www.youtube.com/watch?v=vcSj8ln-BlE",
    "group":"",
    "keywords": ["Marshmallow"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/vcSj8ln-BlE/maxresdefault.jpg",
    "lang":"en",
    "type":"Video"
  },
  {
    "title":"Android for Work: Single Use Devices",
    "category":"",
    "summary":"Android M is bringing the power of Android to all kinds of workplaces.",
    "url":"https://www.youtube.com/watch?v=j3QC6hcpy90",
    "group":"",
    "keywords": ["Marshmallow"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/j3QC6hcpy90/maxresdefault.jpg",
    "lang":"en",
    "type":"Video"
  },
  {
    "title":"Runtime Permissions in Android 6.0 Marshmallow",
    "category":"",
    "summary":"Learn how to integrate runtime permissions into your Android app.",
    "url":"https://www.youtube.com/watch?v=C8lUdPVSzDk",
    "group":"",
    "keywords": ["Marshmallow"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/C8lUdPVSzDk/maxresdefault.jpg",
    "lang":"en",
    "type":"Video"
  },
  {
    "title":"Introduction to Doze",
    "category":"",
    "summary":"An overview of Doze and how to make sure that your app behaves as expected both in and out of Doze mode. ",
    "url":"https://youtu.be/N72ksDKrX6c",
    "group":"",
    "keywords": ["Marshmallow"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/N72ksDKrX6c/maxresdefault.jpg",
    "lang":"en",
    "type":"Video"
  },
  {
    "title":"The Nexus 5X, Nexus 6P and Android Marshmallow",
    "category":"",
    "summary":"The new Nexus 5X and Nexus 6P along with some of the most significant developer features in the latest Android release,.",
    "url":"https://youtu.be/U9tw5ypqEN0",
    "group":"",
    "keywords": ["Marshmallow"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/U9tw5ypqEN0/maxresdefault.jpg",
    "lang":"en",
    "type":"Video"
  },
  {
    "title":"Asking For Permission",
    "category":"",
    "summary":"Picking the right way and time to ask for a permission is critical to it being granted. ",
    "url":"https://youtu.be/iZqDdvhTZj0",
    "group":"",
    "keywords": ["Marshmallow"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/iZqDdvhTZj0/maxresdefault.jpg",
    "lang":"en",
    "type":"Video"
  },
  {
    "title":"Data Binding Library",
    "category":"",
    "summary":"Data Binding Library is a way to write declarative layouts and minimize the glue code necessary to bind your application logic and layouts. ",
    "url":"https://youtu.be/5sCQjeGoE7M",
    "group":"",
    "keywords": ["Marshmallow"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/5sCQjeGoE7M/maxresdefault.jpg",
    "lang":"en",
    "type":"Video"
  },
  {
    "title":"App Links",
    "category":"",
    "summary":"App Links is a new feature of Android Marshmallow that brings a faster way of opening website links for domains that you own.",
    "url":"https://youtu.be/LQoohRwojmw",
    "group":"",
    "keywords": ["Marshmallow"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/LQoohRwojmw/maxresdefault.jpg",
    "lang":"en",
    "type":"Video"
  },
  {
    "title":"Android M Permissions",
    "category":"",
    "summary":"An introduction to Android M runtime permissions in Android M from Google I/O 2015. ",
    "url":"https://www.youtube.com/watch?v=f17qe9vZ8RM",
    "group":"",
    "keywords": ["Marshmallow"],
    "tags": [],
    "image":"https://i1.ytimg.com/vi/f17qe9vZ8RM/maxresdefault.jpg",
    "lang":"en",
    "type":"Video"
  },
  {
    "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":"video"
  },
  {
    "url":"https://www.youtube.com/watch?v=wcjqBSei3a0&list=PLOU2XLYxmsIKLNUPiFCWVtcO7mZRZ9MmS",
    "image": "https://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":"video"
  },
  {
    "url":"https://www.youtube.com/watch?v=B6ydLpkhq04&list=PLOU2XLYxmsIKLNUPiFCWVtcO7mZRZ9MmS",
    "image": "https://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":"video"
  },
  {
    "url":"https://www.youtube.com/watch?v=jyO3-rF4Mu0&list=PLOU2XLYxmsIKLNUPiFCWVtcO7mZRZ9MmS",
    "image": "https://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":"video"
  },
  {
    "url":"https://www.youtube.com/watch?v=yJisuP94lHU",
    "image": "images/distribute/hero-playtime-opener.jpg",
    "title": "Playtime 2015: Innovation happens everywhere",
    "type":"Video",
    "tags":["googleplay"],
    "summary": "Watch the opening video from Google Play's annual event series, Playtime, which celebrates inspirational developers who are changing the world around them.",
  },
  {
    "url":"https://www.youtube.com/watch?v=JrR6o5tYMWQ",
    "image": "images/distribute/hero-acquisition-devbyte.jpg",
    "title": "User acquisition and tracking on Google Play",
    "type" : "Video",
    "tags" : "users,googleplay,googleio",
    "summary": "Learn how to get new users, using Universal app campaigns directly within the Google Play Developer Console to increase your installs from ads, and find out how your acquisition channels perform.",
  },
  {
    "lang": "en",
    "group": "",
    "tags": ["play,protips"],
    "url": "shareables/distribute/secrets_play/v2/web/secrets_to_app_success_v2_en.pdf",
    "timestamp": 1447437450,
    "image": "images/distribute/secrets_v2_banner.jpg",
    "title": "The Secrets to App Success on Google Play",
    "summary": "Get the updated guide full of useful features, tips, and best practices that will help you grow a successful app or game business on Google Play.",
    "keywords": ["secrets, success, play, google"],
    "type": "Book",
    "category": "distribute"
  },
  {
    "lang": "en",
    "group": "",
    "tags": ["studio,sdk"],
    "url": "studio/index.html",
    "timestamp": 1462292883,
    "image": "images/cards/android-studio_2x.png",
    "title": "Download Android Studio and SDK Tools",
    "summary": "Get the official Android IDE and developer tools to build apps for Android.",
    "type": "develop",
    "category": "studio"
  },
  {
    "url":"panel1",
    "image": "",
    "title": "",
    "type" : "",
    "tags" : "",
    "summary": "",
  },
  {
    "url":"panel2",
    "image": "",
    "title": "",
    "type" : "",
    "tags" : "",
    "summary": "",
  },
  {
    "url":"panel3",
    "image": "",
    "title": "",
    "type" : "",
    "tags" : "",
    "summary": "",
  },
  {
    "url":"panel4",
    "image": "",
    "title": "",
    "type" : "",
    "tags" : "",
    "summary": "",
  }
]);

/**
 * Metadata overrides for carousels/heros.
 */
METADATA['en'].carousel = {
  "panel2": {
    "image": "images/tools/and-studio_shortcuts-included_2x.png",
    "title": "Shortcuts included",
    "type":"Android Studio",
    "heroColor": "#fff",
    "url":"",
    "summary": "No need to start from scratch, Android Studio includes prebuilt template patterns &nbsp; from navigation drawers to view pagers and GitHub integration to help guide you along quickly.",
  },
  "panel4": {
    "image": "images/tools/and-studio_feat-gradle_2x.png",
    "title": "Evolved Android builds, with Gradle",
    "type":"Android Studio",
    "heroColor": "#fff",
    "summary": "Create multiple APKs for your Android app with different features using the same project. Manage app dependencies with Maven. Build APKs from Android Studio or the command line.",
  },
  "panel1": {
    "image": "images/tools/codeeditor-low.gif",
    "title": "Fast, intelligent coding",
    "type":"Android Studio",
    "heroColor": "#fff",
    "summary": "Advanced code completion, refactoring and code analysis in an environment that’s purpose-built for Android, the powerful code editor helps you be a more productive Android app developer.",
  },
  "panel3": {
    "image": "images/tools/studio-hero-screens_2x.png",
    "title": " All shapes, sizes and scenarios",
    "type":"Android Studio",
    "heroColor": "#fff",
    "summary": "Create multiple APKs for your Android app with different features using the same project. Manage app dependencies with Maven. Build APKs from Android Studio or the command line.",
  },
  "distribute/googleplay/guide.html": {
    "image": "images/distribute/hero-secrets-to-app-success.jpg",
    "title": "Secrets to App Success on Google Play",
    "summary": "Get the updated guide full of useful features, tips, and best practices that will help you grow a successful app or game business on Google Play.",
  },
  "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.",
  },
  "https://www.youtube.com/watch?v=Pms0pcyPbAM": {
    "url":"https://www.youtube.com/watch?v=Pms0pcyPbAM&list=PLWz5rJ2EKKc9ofd2f-_-xmUi07wIGZa1c]",
    "image": "images/distribute/hero-carousel-giftedmom.jpg",
    "title": "Gifted Mom reaches more mothers across Africa with Android",
    "type":"youtube",
    "summary": "Gifted Mom is an app developed in Cameroon which provides users with critical information about pregnancy, breastfeeding and child vaccinations. Hear the creators explain how they built their business and launched on Google Play.",
  },
  "https://www.youtube.com/watch?v=9m6MoBM-sFI": {
    "url":"https://www.youtube.com/watch?v=9m6MoBM-sFI&list=PLWz5rJ2EKKc9ofd2f-_-xmUi07wIGZa1c&index=3",
    "image": "images/distribute/hero-carousel-sgn.jpg",
    "title": "SGN increases installs with Store Listing Experiments",
    "type" : "youtube",
    "summary": "Watch mobile game developer SGN talk about how using Store Listing Experiments to test multiple variants across their portfolio of games helped improve their ROI, conversion rates and gamer retention.",
  },
  "https://www.youtube.com/watch?v=e7t3svG9PTk": {
    "url":"https://www.youtube.com/watch?v=e7t3svG9PTk&index=2&list=PLWz5rJ2EKKc9ofd2f-_-xmUi07wIGZa1c",
    "image": "images/distribute/hero-carousel-djit.jpg",
    "title": "DJiT builds higher quality experiences on Android",
    "type" : "youtube",
    "summary": "Learn how Music app developer DJiT create higher quality apps with improved latency on Android Marshmallow, as well as other Android and Google Play features.",
  },
  "https://www.youtube.com/watch?v=J3IvOfvH1ys": {
    "url":"https://www.youtube.com/watch?v=J3IvOfvH1ys&list=PLWz5rJ2EKKc9ofd2f-_-xmUi07wIGZa1c&index=1",
    "image": "images/distribute/hero-carousel-wego.jpg",
    "title": "Wego increases user retention with material design",
    "type" : "youtube",
    "summary": "Hear how online travel marketplace Wego, increased monthly user retention by 300% and reduced uninstall rates by up to 25% with material design.",
  },
  "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.",
  },
};

/**
 * Static metadata collections.
 */
METADATA['en'].collections = {
  "index/carousel": {
    "title": "",
    "resources": [
      "about/versions/lollipop.html"
    ]
  },
  "index/primary": {
    "title": "",
    "resources": [
      "training/building-wearables.html",
      "training/material/index.html",
      "studio/index.html"
    ]
  },
  "index/secondary/carousel": {
    "title": "",
    "resources": [
      "https://www.youtube.com/watch?v=9m6MoBM-sFI",
      "https://www.youtube.com/watch?v=Pms0pcyPbAM",
      "https://www.youtube.com/watch?v=e7t3svG9PTk",
      "https://www.youtube.com/watch?v=J3IvOfvH1ys"
    ]
  },
  "index/multiscreen": {
    "title": "",
    "resources": [
      "wear/index.html",
      "tv/index.html",
      "auto/index.html"
    ]
  },
  "design/landing/latest": {
    "title": "",
    "resources": [
      "https://www.youtube.com/watch?v=p4gmvHyuZzw",
      "https://www.youtube.com/watch?v=YaG_ljfzeUw",
      "https://www.youtube.com/watch?v=XOcCOBe8PTc"
    ]
  },
  "design/landing/materialdesign": {
    "title": "",
    "resources": [
      "https://www.google.com/design/spec/animation/",
      "https://www.google.com/design/spec/style/",
      "https://www.google.com/design/spec/layout/",
      "https://www.google.com/design/spec/components/",
      "https://www.google.com/design/spec/patterns/",
      "https://www.google.com/design/spec/usability/"
    ]
  },
  "design/landing/pureandroid": {
    "title": "",
    "resources": [
      "design/get-started/creative-vision.html",
      "design/material/index.html",
      "training/material/index.html",
      "design/patterns/pure-android.html",
      "design/patterns/new.html",
      "design/devices.html"
    ]
  },
  "design/landing/resources": {
    "title": "",
    "resources": [
      "https://www.google.com/design/spec/resources/color-palettes.html",
      "https://www.google.com/design/spec/resources/layout-templates.html",
      "https://www.google.com/design/spec/resources/sticker-sheets-icons.html",
      "https://www.google.com/design/spec/resources/roboto-noto-fonts.html",
      "https://www.google.com/design/icons/index.html",
      "design/downloads/index.html#Wear"
    ]
  },
  "develop/landing/mainlinks": {
    "title": "",
    "resources": [
      "studio/index.html",
      "samples/new/index.html",
      "studio/projects/templates.html"
    ]
  },
  "develop/landing/latest": {
    "title": "",
    "resources": [
      "https://android-developers.blogspot.com/2015/04/new-android-code-samples.html",
      "https://android-developers.blogspot.com/2015/04/android-support-library-221.html",
      "https://android-developers.blogspot.com/2015/03/a-new-reference-app-for-multi-device.html"
    ]
  },
  "develop/landing/devpatterns": {
    "title": "",
    "resources": [
      "https://www.youtube.com/watch?v=kmUGLURRPkI",
      "https://www.youtube.com/watch?v=HGElAW224dE",
      "https://www.youtube.com/watch?v=zQekzaAgIlQ"
    ]
  },
  "develop/landing/performance": {
    "title": "",
    "resources": [
      "https://www.youtube.com/watch?v=fEEulSk1kNY",
      "https://www.youtube.com/watch?v=-3ry8PxcJJA",
      "https://www.youtube.com/watch?v=_kKTGK-Cb_4"
    ]
  },
  "develop/landing/buildwithgoogle": {
    "title": "",
    "resources": [
    ]
  },
  "develop/landing/ubicomp": {
    "title": "",
    "resources": [
      "https://www.youtube.com/watch?v=AK38PJZmIW8&list=PLWz5rJ2EKKc-kIrPiq098QH9dOle-fLef",
      "https://www.youtube.com/watch?v=6K_jxccHv5M&index=1&list=PLOU2XLYxmsILFBfx66ens76VMLMEPJAB0",
      "https://www.youtube.com/watch?v=ctiaVxgclsg&list=PLWz5rJ2EKKc9BdE_PSLNIGjXXr3h_orXM"
    ]
  },
  "develop/landing/tools": {
    "title": "",
    "resources": [
      "https://www.youtube.com/watch?v=ZOz_yr8Yxq8&list=PLWz5rJ2EKKc_w6fodMGrA1_tsI3pqPbqa",
      "https://www.youtube.com/watch?v=eOV2owswDkE&list=PLWz5rJ2EKKc_w6fodMGrA1_tsI3pqPbqa",
      "https://www.youtube.com/watch?v=StqAZ1OQbqA&list=PLWz5rJ2EKKc_w6fodMGrA1_tsI3pqPbqa",
      "https://www.youtube.com/watch?v=-SY5nkNVUn0&list=PLWz5rJ2EKKc_w6fodMGrA1_tsI3pqPbqa",
      "https://www.youtube.com/watch?v=4rI4tTd7-J8&list=PLWz5rJ2EKKc_w6fodMGrA1_tsI3pqPbqa",
      "https://www.youtube.com/watch?v=SBbWGxXCMqQ&list=PLWz5rJ2EKKc_w6fodMGrA1_tsI3pqPbqa",
      "https://www.youtube.com/watch?v=xxx3Fn7EowU&list=PLWz5rJ2EKKc_w6fodMGrA1_tsI3pqPbqa",
      "https://www.youtube.com/watch?v=cD7NPxuuXYY&list=PLWz5rJ2EKKc8I9gHTMh5yKkwRRGE8BjbQ",
      "https://www.youtube.com/watch?v=2I6fuD20qlY&list=PLWz5rJ2EKKc8I9gHTMh5yKkwRRGE8BjbQ",
      "https://www.youtube.com/watch?v=5Be2mJzP-Uw&list=PLWz5rJ2EKKc9e0d55YHgJFHXNZbGHEXJX"
    ]
  },
  "google/landing/googleplay": {
    "title": "",
    "resources": [
      "google/play/billing/index.html",
      "google/play/billing/billing_subscriptions.html",
      "google/play/developer-api.html"
    ]
  },
  "develop/landing/courses": {
    "title": "",
    "resources": [
      "https://www.udacity.com/course/ud849",
      "https://www.udacity.com/course/ud853",
      "https://www.udacity.com/course/ud825",
      "https://www.udacity.com/android",
      "https://www.udacity.com/course/ud855",
      "https://www.udacity.com/course/ud875A",
      "https://www.udacity.com/course/ud875B",
      "https://www.udacity.com/course/ud875C",
      "https://www.udacity.com/course/ud876--1",
      "https://www.udacity.com/course/ud876--2",
      "https://www.udacity.com/course/ud876--3",
      "https://www.udacity.com/course/ud876--4",
      "https://www.udacity.com/course/ud876--5",
      "https://www.udacity.com/course/ud862",
      "https://www.udacity.com/course/ud837",
      "https://www.udacity.com/course/ud867"
    ]
  },
  "distribute/landing/carousel": {
    "title": "",
    "resources": [
    "distribute/googleplay/guide.html",
    "https://www.youtube.com/watch?v=JrR6o5tYMWQ",
    "https://www.youtube.com/watch?v=B6ydLpkhq04&list=PLOU2XLYxmsIKLNUPiFCWVtcO7mZRZ9MmS",
    "https://www.youtube.com/watch?v=yJisuP94lHU",
    ]
  },
  "distribute/landing/googleplay": {
    "title": "",
    "resources": [
      "distribute/googleplay/about.html",
      "distribute/googleplay/developer-console.html",
      "distribute/googleplay/index.html#opportunities"
    ]
  },
  "distribute/landing/more": {
    "title": "",
    "resources": [
      "distribute/users/promote-with-ads.html",
      "distribute/monetize/ads.html",
      "distribute/analyze/index.html",
      "distribute/engage/deep-linking.html",
      "distribute/engage/easy-signin.html",
      "https://cloud.google.com/docs/"
    ]
  },
  "distribute/edu/videos/stories": {
    "title": "",
    "resources": [
      "https://www.youtube.com/watch?v=Idu7VcTTXfk",
      "https://www.youtube.com/watch?v=iokH4SAIfRw"
    ]
  },
  "distribute/edu/videos/bestpractices": {
    "title": "",
    "resources": [
      "https://www.youtube.com/watch?v=iulXz8QTD1g",
      "https://www.youtube.com/watch?v=IKhU180eJMo",
      "https://www.youtube.com/watch?v=_AZ6UcPz-_g",
      "https://www.youtube.com/watch?v=Eh2adsAyTKc"
    ]
  },
  "distribute/edu/videos/experience": {
    "title": "",
    "resources": [
      "https://youtu.be/vzvpcEffvaE"
    ]
  },
  "distribute/gp/gplanding": {
    "resources": [
      "distribute/googleplay/about.html",
      "distribute/googleplay/start.html",
      "distribute/googleplay/developer-console.html"
    ]
  },
  "distribute/gp/gpfelanding": {
    "resources": [
      "distribute/googleplay/wear.html",
      "distribute/googleplay/tv.html",
      "distribute/googleplay/auto.html",
      "distribute/googleplay/families/about.html",
      "distribute/googleplay/work/about.html",
      "distribute/googleplay/edu/about.html",
      "distribute/googleplay/cast.html",
      "distribute/googleplay/cardboard.html",
      "distribute/googleplay/guide.html"
    ]
  },
  "distribute/googleplay/gpfw": {
    "resources": [
      "https://www.android.com/work/",
      "https://www.youtube.com/watch?v=jQWB_-o1kz4&list=PLOU2XLYxmsIKAK2Bhv19H2THwF-22O5WX",
      "work/index.html"
    ]
  },
  "distribute/essentials": {
    "resources": [
      "distribute/essentials/quality/core.html",
      "distribute/essentials/quality/tablets.html",
      "distribute/essentials/quality/tv.html",
      "distribute/essentials/quality/wear.html",
      "distribute/essentials/quality/auto.html",
      "distribute/essentials/quality/billions.html",
    ]
  },
  "distribute/users": {
    "title": "",
    "resources": [
      "distribute/users/your-listing.html",
      "distribute/users/promote-with-ads.html",
      "distribute/googleplay/index.html#opportunities",
      "distribute/analyze/improve-roi.html",
      "distribute/users/expand-to-new-markets.html",
      "distribute/analyze/index.html",
      "distribute/users/app-invites.html",
      "distribute/users/ota-installs.html",
      "distribute/users/youtube.html",
      "distribute/users/house-ads.html",
      "distribute/users/experiments.html",
      "distribute/users/user-acquisition.html",
      "distribute/users/banners.html",
      "distribute/users/beta.html"
    ]
  },
  "distribute/engagelanding": {
    "resources": [
      "distribute/engage/intents.html",
      "distribute/engage/widgets.html",
      "distribute/engage/translate.html",
      "distribute/engage/notifications.html",
      "distribute/engage/deep-linking.html",
      "distribute/engage/ads.html",
      "distribute/engage/game-services.html",
      "distribute/engage/easy-signin.html",
      "distribute/analyze/build-better-apps.html",
      "distribute/engage/gcm.html",
      "distribute/engage/beta.html"
    ]
  },
  "distribute/monetize": {
    "resources": [
      "distribute/monetize/premium.html",
      "distribute/monetize/freemium.html",
      "distribute/monetize/subscriptions.html",
      "distribute/monetize/ads.html",
      "distribute/monetize/ecommerce.html",
      "distribute/monetize/payments.html",
      "distribute/analyze/understand-user-value.html",
    ]
  },
  "distribute/analyzelanding": {
    "resources": [
      "distribute/analyze/start.html",
      "distribute/analyze/measure.html",
      "distribute/analyze/understand-user-value.html",
      "distribute/analyze/improve-roi.html",
      "distribute/analyze/build-better-apps.html",
      "distribute/analyze/google-services.html"
    ]
  },
  "distribute/analyzestart": {
    "resources": [
      "https://analyticsacademy.withgoogle.com/course04",
      "google/play-services/index.html",
      "https://developers.google.com/analytics/solutions/mobile-implementation-guide",
      "https://developers.google.com/analytics/devguides/collection/android/",
      "https://www.google.com/tagmanager/",
      "https://github.com/googleanalytics/google-analytics-plugin-for-unity"
    ]
  },
  "distribute/analyzemeasure": {
    "resources": [

      "https://developers.google.com/analytics/solutions/mobile-implementation-guide",
      "https://developers.google.com/analytics/devguides/collection/android/v4/enhanced-ecommerce",
      "https://support.google.com/analytics/answer/1032415",
      "https://developers.google.com/analytics/devguides/collection/android/v4/events",
      "https://developers.google.com/analytics/devguides/collection/android/v4/customdimsmets",
      "https://developers.google.com/analytics/devguides/collection/android/v4/user-id"
    ]
  },
  "distribute/analyzeunderstand": {
    "resources": [
      "https://developers.google.com/analytics/devguides/collection/android/v4/display-features",
      "https://support.google.com/analytics/answer/3123906",
      "https://support.google.com/analytics/answer/2568874?ref_topic=6012392",
      "https://developers.google.com/analytics/devguides/collection/android/v4/enhanced-ecommerce",
      "https://support.google.com/analytics/answer/1032415",
    ]
  },
  "distribute/analyzeimprove": {
    "resources": [

      "https://developers.google.com/analytics/devguides/collection/android/v4/campaigns",
      "https://support.google.com/analytics/answer/2956981",
      "https://support.google.com/analytics/answer/1033961",
      "https://developers.google.com/analytics/devguides/collection/android/v4/campaigns#google-play-url-builder",
      "https://developers.google.com/analytics/solutions/mobile-campaign-deep-link"
    ]
  },
  "distribute/analyzebuild": {
    "resources": [
      "https://support.google.com/tagmanager/answer/6003007",
      "https://support.google.com/analytics/answer/2785577",
      "https://support.google.com/analytics/answer/1151300"
    ]
  },
  "distribute/analyzeact": {
    "resources": [
      "https://support.google.com/analytics/answer/2611268",
      "https://support.google.com/analytics/answer/1033961",
      "https://support.google.com/admob/answer/3508177",
      "https://support.google.com/analytics/answer/2956981",
      "https://support.google.com/tagmanager/answer/6003007"
    ]
  },
  "distribute/essentials/guidelines": {
    "title": "",
    "resources": [
      "distribute/essentials/quality/core.html",
      "distribute/essentials/quality/tablets.html",
      "distribute/essentials/quality/wear.html",
      "distribute/essentials/quality/tv.html",
      "distribute/essentials/quality/auto.html",
      "distribute/essentials/quality/billions.html",
      "https://developers.google.com/edu/guidelines"
    ]
  },
  "distribute/essentials/tools": {
    "title": "",
    "resources": [
      "distribute/tools/launch-checklist.html",
      "distribute/tools/localization-checklist.html",
      "https://support.google.com/googleplay/android-developer",
      "distribute/tools/promote/brand.html",
      "distribute/tools/promote/device-art.html",
      "https://play.google.com/intl/en_us/badges/",
      "distribute/tools/promote/linking.html",
      "distribute/tools/open-distribution.html",
      "about/dashboards/index.html"
    ]
  },
  "distribute/tools/checklists": {
    "title": "",
    "resources": [
      "distribute/tools/launch-checklist.html",
      "distribute/tools/localization-checklist.html"
    ]
  },
  "distribute/tools/promote": {
    "resources": [
      "distribute/tools/promote/device-art.html",
      "https://play.google.com/intl/en_us/badges/",
      "distribute/tools/promote/linking.html"
    ]
  },
  "distribute/tools/support": {
    "title": "Google Play",
    "resources": [
      "https://support.google.com/googleplay/android-developer",
      "https://support.google.com/googleplay/android-developer/answer/4430948",
      "support.html"
    ]
  },
  "distribute/tools/news": {
    "title": "",
    "resources": [
      "https://android-developers.blogspot.com/",
      "https://plus.google.com/+AndroidDevelopers/"
    ]
  },
  "distribute/tools/more": {
    "title": "Google Play",
    "resources": [
      "distribute/tools/promote/brand.html",
      "distribute/tools/open-distribution.html",
      "about/dashboards/index.html"
    ]
  },
  "distribute/googleplay": {
    "title": "Google Play",
    "resources": [
      "distribute/googleplay/developer-console.html",
      "distribute/essentials/best-practices/apps.html",
      "distribute/tools/launch-checklist.html",
      "distribute/essentials/best-practices/games.html",
    ]
  },
  "distribute/googleplay/gettingstarted": {
    "title": "Get Started",
    "resources": [
      "distribute/googleplay/developer-console.html",
      "https://support.google.com/googleplay/android-developer/answer/113468",
      "https://support.google.com/googleplay/android-developer/answer/138294",
      "https://support.google.com/googleplay/android-developer"
    ]
  },
  "distribute/googleplay/developerconsole/related": {
    "title": "Developer Console",
    "resources": [
      "google/play/billing/index.html",
      "https://support.google.com/googleplay/android-developer/answer/138294"
    ]
  },
  "distribute/googleplay/developerconsole": {
    "title": "Developer Console",
    "resources": [
      "google/play/billing/index.html",
      "https://support.google.com/googleplay/android-developer/answer/138294"
    ]
  },
  "distribute/googleplay/beta": {
    "title": "Alpha and Beta Testing",
    "resources": [
      "https://support.google.com/googleplay/android-developer/answer/3131213",
      "https://support.google.com/googleplay/android-developer/answer/3131213#games",
      "distribute/googleplay/experiments.html"
    ]
  },
  "distribute/googleplay/experiments/successes": {
    "title": "Store Listing Experiment successes",
    "resources": [
    ]
  },
  "distribute/googleplay/experiments/related": {
    "title": "Store Listing Experiments",
    "resources": [
      "https://support.google.com/googleplay/android-developer/answer/6227309",
      "https://www.youtube.com/watch?v=B6ydLpkhq04",
      "https://support.google.com/tagmanager/answer/6003007"
    ]
  },
  "distribute/googleplay/banners/related": {
    "title": "App Install Banners",
    "resources": [
      "https://developers.google.com/web/updates/2015/03/increasing-engagement-with-app-install-banners-in-chrome-for-android#native"
    ]
  },
  "distribute/googleplay/useracquisition/related": {
    "title": "User Acquisition",
    "resources": [
      "https://support.google.com/googleplay/android-developer/answer/6263332"
    ]
  },
  "distribute/googleplay/cast": {
    "title": "Google Cast",
    "resources": [
      "https://developers.google.com/cast/docs/ux_guidelines",
      "https://developers.google.com/cast/docs/android_sender",
      "https://www.github.com/googlecast"
    ]
  },
  "distribute/googleplay/cardboard": {
    "title": "Google Cast",
    "resources": [
      "https://www.google.com/get/cardboard/get-cardboard/",
      "https://developers.google.com/cardboard/android/download",
      "https://www.google.com/design/spec-vr"
    ]
  },
  "distribute/googleplay/gpfe/highlight": {
    "title": "About Google Play for Education",
    "resources": [
      "https://youtu.be/vzvpcEffvaE"
    ]
  },
  "distribute/googleplay/gpfe/dev/about": {
    "title": "About Google Play for Education / Developers",
    "resources": [
      "distribute/googleplay/edu/start.html",
      "https://developers.google.com/edu/guidelines",
      "https://developers.google.com/edu/faq",
      "distribute/essentials/quality/tablets.html",
      "https://developers.google.com/edu/",
      "https://www.google.com/edu/tablets/#tablets-family"
    ]
  },
  "distribute/googleplay/gpfe/dev": {
    "title": "About Google Play for Education / Developers",
    "resources": [
      "distribute/googleplay/edu/about.html",
      "https://developers.google.com/edu/guidelines",
      "distribute/essentials/quality/tablets.html",
      "distribute/googleplay/developer-console.html",
      "https://play.google.com/about/developer-distribution-agreement-addendum.html",
    ]
  },
  "distribute/googleplay/aboutgpfe/educators/about": {
    "title": "About Google Play for Education / Educators",
    "resources": [
      "https://www.google.com/edu/tablets/",
      "https://www.youtube.com/watch?v=haEmsMo0f3w"
    ]
  },
  "distribute/googleplay/aboutgpfe/educators": {
    "title": "About Google Play for Education / Educators",
    "resources": [
      "https://www.google.com/edu/tablets/",
      "https://youtu.be/vzvpcEffvaE"
    ]
  },
  "distribute/googleplay/gettingstartedgpfe/educators": {
    "title": "About Google Play for Education / Educators",
    "resources": [
      "https://www.google.com/edu/tablets/",
      "https://youtu.be/vzvpcEffvaE"
    ]
  },
  "distribute/essentials/eduessentials/developers": {
    "title": "",
    "resources": [
      "distribute/googleplay/developer-console.html",
      "distribute/googleplay/edu/start.html",
      "https://developers.google.com/edu/faq"
    ]
  },
  "distribute/essentials/eduessentials/educators": {
    "title": "",
    "resources": [
      "https://www.google.com/edu/tablets/",
      "distribute/essentials/quality/tablets.html",
    ]
  },
  "distribute/essentials/optimizing": {
    "title": "Optimizing Your App",
    "resources": [
      "design/index.html",
      "training/articles/perf-anr.html",
      "https://android-developers.blogspot.com/2013/10/improved-app-insight-by-linking-google.html"
    ]
  },
  "distribute/users/appinvites": {
    "title": "",
    "resources": [
      "https://developers.google.com/app-invites/",
      "https://developers.google.com/identity/sign-in/android/",
      "https://developers.google.com/app-indexing/"
    ]
  },
  "distribute/users/knowyouruser": {
    "title": "",
    "resources": [
      "distribute/essentials/optimizing-your-app.html",
      "http://www.youtube.com/watch?v=RRelFvc6Czo",
      "distribute/stories/games/rvappstudios-zombie.html"
    ]
  },
  "distribute/users/promotewithads": {
    "title": "",
    "resources": [
      "https://support.google.com/adwords/answer/6032059",
      "https://support.google.com/adwords/answer/6032073",
      "https://support.google.com/adwords/answer/6167164",
      "https://support.google.com/adwords/answer/6167162"
    ]
  },
  "distribute/users/buildbuzz": {
    "title": "",
    "resources": [
      "https://play.google.com/intl/en_us/badges/",
      "distribute/tools/promote/linking.html",
      "distribute/tools/promote/device-art.html",
      "https://plus.google.com/+GooglePlay"
    ]
  },
  "distribute/users/createagreatlisting": {
    "title": "",
    "resources": [
      "https://support.google.com/googleplay/android-developer/answer/1078870",
      "https://android-developers.blogspot.com/2011/10/android-market-featured-image.html",
      "distribute/tools/launch-checklist.html",
      "https://android-developers.blogspot.com/2013/07/making-beautiful-android-app-icons.html",
      "https://android-developers.blogspot.com/2012/12/localize-your-promotional-graphics-on.html",
      "https://android-developers.blogspot.com/2013/10/making-your-app-content-more-accessible.html"
    ]
  },
  "distribute/users/appindexing": {
    "title": "",
    "resources": [
      "https://developers.google.com/app-indexing/",
      "https://developers.google.com/app-indexing/webmasters/details",
      "distribute/engage/deep-linking.html",
      "training/app-indexing/index.html"
    ]
  },
  "distribute/users/otas": {
    "title": "",
    "resources": [
      "https://developers.google.com/identity/sign-in/android/",
      "https://developers.google.com/+/features/play-installs",
      "https://developers.google.com/+/features/analytics"
    ]
  },
  "distribute/users/houseads": {
    "title": "",
    "resources": [
      "https://support.google.com/admob/topic/2784623",
      "https://developers.google.com/mobile-ads-sdk/download",
      "https://support.google.com/googleplay/android-developer/topic/2985714",
      "https://analyticsacademy.withgoogle.com/mobile-app",
      "https://support.google.com/analytics/answer/2611404",
      "https://support.google.com/admob/answer/3111064"
    ]
  },
  "distribute/users/youtube": {
    "title": "",
    "resources": [
      "https://support.google.com/youtube/answer/6140493",
      "https://support.google.com/youtube/answer/2797387"
    ]
  },
  "distribute/toolsreference/bestpractices/apps": {
    "title": "",
    "resources": [
      "distribute/googleplay/developer-console.html",
      "https://android-developers.blogspot.com/"
    ]
  },
  "distribute/toolsreference/bestpractices/games": {
    "title": "",
    "resources": [
      "google/play-services/games.html",
      "https://android-developers.blogspot.com/",
      "distribute/googleplay/developer-console.html",
      "https://www.youtube.com/watch?v=1RIz-cmTQB4"
    ]
  },
  "distribute/essentials/corequalityguidelines/visualdesign": {
    "title": "",
    "resources": [
      "design/index.html",
      "design/patterns/navigation.html",
      "design/patterns/actionbar.html",
      "design/style/iconography.html",
      "design/patterns/notifications.html"
    ]
  },
  "distribute/essentials/corequalityguidelines/functionality": {
    "title": "",
    "resources": [
      "https://android-developers.blogspot.com/2011/11/making-android-games-that-play-nice.html",
      "guide/components/tasks-and-back-stack.html",
      "training/basics/activity-lifecycle/recreating.html"
    ]
  },
  "distribute/essentials/tvqualityguidelines/visualdesign": {
    "title": "",
    "resources": [
      "design/tv/index.html",
      "training/tv/start/index.html"
    ]
  },
  "distribute/essentials/tvqualityguidelines/functionality": {
    "title": "",
    "resources": [
      "training/tv/start/hardware.html",
      "training/tv/games/index.html"
    ]
  },
  "distribute/essentials/wearqualityguidelines/visualdesign": {
    "title": "",
    "resources": [
      "design/wear/index.html",
      "training/building-wearables.html",
      "training/wearables/ui/index.html"
    ]
  },
  "distribute/essentials/wearqualityguidelines/functionality": {
    "title": "",
    "resources": [
      "training/wearables/notifications/index.html",
      "training/wearables/apps/index.html",
      "training/wearables/notifications/voice-input.html"
    ]
  },
  "distribute/essentials/autoqualityguidelines/visualdesign": {
    "title": "",
    "resources": [
      "training/auto/messaging/index.html",
      "training/auto/start/index.html"
    ]
  },
  "distribute/essentials/core/performance": {
    "title": "",
    "resources": [
      "https://android-developers.blogspot.com/2010/12/new-gingerbread-api-strictmode.html",
      "training/articles/perf-anr.html",
      "https://android-developers.blogspot.com/2010/07/multithreading-for-performance.html"
    ]
  },
  "distribute/essentials/core/play": {
    "title": "",
    "resources": [
      "distribute/tools/launch-checklist.html",
      "https://play.google.com/about/developer-content-policy.html",
      "https://support.google.com/googleplay/android-developer/answer/188189",
      "https://support.google.com/googleplay/android-developer/answer/1078870",
      "https://android-developers.blogspot.com/2011/10/android-market-featured-image.html",
      "https://support.google.com/googleplay/android-developer/answer/113477"
    ]
  },
  "distribute/essentials/tabletguidelines/optimize": {
    "title": "",
    "resources": [
      "design/style/metrics-grids.html",
      "design/style/devices-displays.html",
      "guide/practices/screens_support.html",
    ]
  },
  "distribute/essentials/tabletguidelines/extrascreen": {
    "title": "",
    "resources": [
      "design/patterns/multi-pane-layouts.html",
      "training/design-navigation/multiple-sizes.html",
      "training/multiscreen/index.html",
    ]
  },
  "distribute/essentials/tabletguidelines/assets": {
    "title": "",
    "resources": [
      "design/style/iconography.html",
      "guide/topics/resources/providing-resources.html",
      "guide/practices/screens_support.html",
      "training/basics/supporting-devices/screens.html"
    ]
  },
  "distribute/essentials/tabletguidelines/fonts": {
    "title": "",
    "resources": [
      "design/style/metrics-grids.html",
      "design/style/typography.html",
      "guide/practices/screens_support.html",
      "training/multiscreen/screendensities.html"
    ]
  },
  "distribute/essentials/tabletguidelines/widgets": {
    "title": "",
    "resources": [
      "guide/topics/appwidgets/index.html#MetaData",
      "guide/topics/appwidgets/index.html",
      "design/patterns/widgets.html"
    ]
  },
  "distribute/essentials/tabletguidelines/versions": {
    "title": "",
    "resources": [
      "guide/topics/manifest/uses-sdk-element.html#ApiLevels",
      "guide/topics/manifest/uses-sdk-element.html",
      "training/basics/supporting-devices/platforms.html"
    ]
  },
  "distribute/essentials/tabletguidelines/hardware": {
    "title": "",
    "resources": [
      "guide/topics/manifest/uses-feature-element.html",
      "guide/topics/manifest/uses-feature-element.html#testing"
    ]
  },
  "distribute/essentials/tabletguidelines/tabletscreens": {
    "title": "",
    "resources": [
      "guide/practices/screens_support.html#DeclaringScreenSizeSupport",
      "guide/practices/screens_support.html"
    ]
  },
  "distribute/essentials/tabletguidelines/showcase": {
    "title": "",
    "resources": [
      "distribute/tools/launch-checklist.html",
      "https://play.google.com/apps/publish/",
      "https://play.google.com/intl/en_us/badges/",
      "distribute/tools/promote/device-art.html"
    ]
  },
  "distribute/essentials/tabletguidelines/googleplay": {
    "title": "",
    "resources": [
      "https://android-developers.blogspot.com/2013/10/more-visibility-for-tablet-apps-in.html",
      "google/play/filters.html"
    ]
  },
  "distribute/essentials/tabletguidelines": {
    "title": "",
    "resources": [
      "distribute/essentials/quality/core.html",
      "https://android-developers.blogspot.com/2013/10/more-visibility-for-tablet-apps-in.html",
      "distribute/tools/launch-checklist.html",
      "distribute/tools/promote/device-art.html"
    ]
  },
 "distribute/essentials/billionsquality/connectivity": {
    "title": "",
    "resources": [
      "training/basics/network-ops/managing.html",
      "training/monitoring-device-state/connectivity-monitoring.html",
      "guide/topics/providers/content-providers.html"
    ]
  },
  "distribute/essentials/billionsquality/capability": {
    "title": "",
    "resources": [
      "guide/practices/screens_support.html",
      "training/multiscreen/screendensities.html",
      "training/articles/memory.html"
    ]
  },
  "distribute/essentials/billionsquality/cost": {
    "title": "",
    "resources": [
      "https://medium.com/@wkalicinski/smallerapk-part-4-multi-apk-through-abi-and-density-splits-477083989006#.23hlddo3x",
      "training/basics/network-ops/managing.html"
    ]
  },
  "distribute/essentials/billionsquality/consumption": {
    "title": "",
    "resources": [
      "training/efficient-downloads/efficient-network-access.html",
      "training/monitoring-device-state/index.html"
    ]
  },
  "distribute/essentials/billionsquality/content": {
    "title": "",
    "resources": [
      "training/material/animations.html#Touch",
      "training/articles/perf-anr.html",
      "training/improving-layouts/index.html"
    ]
  },
  "distribute/getusers/notifications": {
    "title": "",
    "resources": [
      "design/patterns/notifications.html",
      "distribute/engage/gcm.html",
      "https://play.google.com/about/developer-content-policy.html"
    ]
  },
  "distribute/engage/analytics": {
    "title": "",
    "resources": [
      "https://www.google.com/analytics/mobile/",
      "https://android-developers.blogspot.com/2013/10/improved-app-insight-by-linking-google.html",
      "https://developers.google.com/analytics/devguides/collection/android/"
    ]
  },
  "distribute/engage/widgets": {
    "title": "",
    "resources": [
      "design/patterns/widgets.html",
      "guide/topics/appwidgets/index.html"
    ]
  },
  "distribute/engage/translate": {
    "title": "",
    "resources": [
      "https://support.google.com/l10n/answer/6359997"
    ]
  },
  "distribute/engage/reengage": {
    "title": "",
    "resources": [
      "https://support.google.com/adwords/answer/6032073",
      "distribute/engage/deep-linking.html",
      "https://support.google.com/adwords/answer/6167162",
      "distribute/users/promote-with-ads.html"
    ]
  },
  "distribute/engage/appindexing": {
    "title": "",
    "resources": [
      "distribute/engage/intents.html",
      "distribute/engage/deep-linking.html",
      "training/app-indexing/index.html"
    ]
  },
  "distribute/engage/intents": {
    "title": "",
    "resources": [
      "guide/components/intents-filters.html",
      "distribute/engage/deep-linking.html",
      "distribute/engage/ads.html"
    ]
  },
  "distribute/getusers/expandnewmarkets": {
    "title": "",
    "resources": [
      "distribute/tools/localization-checklist.html",
      "https://support.google.com/googleplay/android-developer/table/3541286",
      "distribute/stories/localization.html",
      "https://play.google.com/intl/en_us/badges/",
      "distribute/tools/promote/device-art.html",
      "https://www.youtube.com/watch?v=SkHHPf3EdzE"
    ]
  },
  "distribute/engage/gcm": {
    "title": "",
    "resources": [
      "https://developers.google.com/cloud-messaging/gcm",
      "https://developers.google.com/cloud-messaging/android/client",
    ]
  },
  "distribute/engage/gamesservices/related": {
    "title": "",
    "resources": [
      "https://developers.google.com/games/services/",
      "distribute/analyze/start.html",
      "distribute/googleplay/cardboard.html",
      "https://www.google.com/admob/"
    ]
  },
  "distribute/engage/googleplaygames": {
    "title": "",
    "resources": [
      "https://developers.google.com/games/services/",
      "distribute/analyze/start.html",
      "distribute/googleplay/cardboard.html",
      "https://www.google.com/admob/"
    ]
  },
  "distribute/engage/gplus": {
    "title": "",
    "resources": [
      "distribute/users/ota-installs.html",
      "https://developers.google.com/identity/sign-in/android/people",
      "https://developers.google.com/+/mobile/android/"
    ]
  },
  "distribute/engage/community": {
    "title": "",
    "resources": [
      "distribute/users/build-community.html",
      "distribute/engage/video.html"
    ]
  },
  "distribute/engage/deeplinks": {
    "title": "",
    "resources": [
      "distribute/engage/easy-signin.html",
      "https://developers.google.com/app-indexing/",
      "https://developers.google.com/+/mobile/android/share/interactive-post"
    ]
  },
  "distribute/engage/appupdates": {
    "title": "",
    "resources": [
      "distribute/essentials/optimizing-your-app.html",
      "distribute/tools/launch-checklist.html",
      "distribute/googleplay/developer-console.html",
      "design/patterns/notifications.html"
    ]
  },
  "distribute/engage/video/more": {
    "title": "",
    "resources": [
      "https://www.youtube.com/yt/dev/",
      "distribute/essentials/best-practices/games.html",
      "https://www.youtube.com/watch?v=RRelFvc6Czo"
    ]
  },
  "distribute/engage/community": {
    "title": "",
    "resources": [
      "distribute/users/build-community.html",
      "distribute/engage/video.html"
    ]
  },
  "distribute/engage/kiwi": {
    "title": "",
    "resources": [
      "https://www.youtube.com/watch?v=WWArLD6nqrk"
    ]
  },
  "distribute/toolsreference/gpfefaq": {
    "title": "",
    "resources": [
      "https://www.google.com/edu/tablets/",
      "distribute/googleplay/edu/start.html",
      "https://play.google.com/about/developer-distribution-agreement-addendum.html",
      "distribute/essentials/quality/core.html",
      "distribute/essentials/quality/tablets.html"
    ]
  },
  "distribute/toolsreference/localizationchecklist/identifylocales": {
    "title": "",
    "resources": [
      "https://support.google.com/googleplay/android-developer/answer/138294"
    ]
  },
  "distribute/tools/loc/designforloc": {
    "title": "",
    "resources": [
      "https://android-developers.blogspot.com/2013/03/native-rtl-support-in-android-42.html",
      "guide/topics/resources/string-resource.html#Plurals",
      "guide/topics/resources/string-resource.html",
      "reference/java/util/Locale.html"
    ]
  },
  "distribute/toolsreference/localizationchecklist/managestrings": {
    "title": "",
    "resources": [
      "guide/topics/resources/string-resource.html",
      "design/style/writing.html",
      "https://en.wikipedia.org/wiki/XLIFF"
    ]
  },
  "distribute/toolsreference/localizationchecklist/translatestrings": {
    "title": "",
    "resources": [
      "distribute/stories/localization.html",
    ]
  },
  "distribute/toolsreference/localizationchecklist/preplaunch": {
    "title": "",
    "resources": [
      "https://play.google.com/intl/en_us/badges/",
      "distribute/tools/promote/device-art.html"
    ]
  },
  "distribute/toolsreference/localizationchecklist/supportlaunch": {
    "title": "",
    "resources": [
      "distribute/tools/launch-checklist.html",
    ]
  },
  "distribute/toolsreference/launchchecklist/understanding": {
    "title": "",
    "resources": [
      "studio/publish/index.html",
      "studio/publish/preparing.html"
    ]
  },
  "distribute/toolsreference/launchchecklist/policies": {
    "title": "",
    "resources": [
      "https://support.google.com/googleplay/android-developer/answer/4430948",
      "https://support.google.com/googleplay/android-developer/topic/2364761",
      "https://support.google.com/googleplay/android-developer"
    ]
  },
  "distribute/toolsreference/launchchecklist/quality": {
    "title": "",
    "resources": [
      "distribute/essentials/quality/core.html",
      "distribute/essentials/quality/tablets.html",
      "https://developers.google.com/edu/guidelines"
    ]
  },
  "distribute/toolsreference/launchchecklist/rating": {
    "title": "",
    "resources": [
      "https://support.google.com/googleplay/android-developer/answer/188189",
    ]
  },
  "distribute/toolsreference/launchchecklist/country": {
    "title": "",
    "resources": [
      "https://support.google.com/googleplay/android-developer/answer/138294"
    ]
  },
  "distribute/toolsreference/launchchecklist/size": {
    "title": "",
    "resources": [
      "google/play/expansion-files.html",
      "studio/build/shrink-code.html"
    ]
  },
  "distribute/toolsreference/launchchecklist/platform": {
    "title": "",
    "resources": [
      "guide/practices/screens_support.html",
      "about/dashboards/index.html",
      "guide/topics/manifest/uses-sdk-element.html"
    ]
  },
  "distribute/toolsreference/launchchecklist/price": {
    "title": "",
    "resources": [
      "https://support.google.com/googleplay/android-developer/table/3541286",
    ]
  },
  "distribute/toolsreference/launchchecklist/purchasemethod": {
    "title": "",
    "resources": [
      "google/play/billing/index.html",
      "google/play/billing/billing_subscriptions.html"
    ]
  },
  "distribute/toolsreference/launchchecklist/setprice": {
    "title": "",
    "resources": [
      "https://support.google.com/googleplay/android-developer/answer/1169947",
      "https://support.google.com/googleplay/android-developer/answer/138412",
      "https://support.google.com/googleplay/android-developer/answer/112622",
      "https://support.google.com/googleplay/android-developer/answer/138000"
    ]
  },
  "distribute/toolsreference/launchchecklist/localization": {
    "title": "",
    "resources": [
      "distribute/tools/localization-checklist.html",
      "guide/topics/resources/localization.html",
    ]
  },
  "distribute/toolsreference/launchchecklist/graphics": {
    "title": "",
    "resources": [
      "https://support.google.com/googleplay/android-developer/answer/1078870",
      "https://android-developers.blogspot.com/2011/10/android-market-featured-image.html"
    ]
  },
  "distribute/toolsreference/launchchecklist/productdetails": {
    "title": "",
    "resources": [
      "https://support.google.com/googleplay/android-developer/answer/113475",
      "https://support.google.com/googleplay/android-developer/answer/1078870"
    ]
  },
  "distribute/toolsreference/launchchecklist/badges": {
    "title": "",
    "resources": [
      "https://play.google.com/intl/en_us/badges/",
      "distribute/tools/promote/linking.html"
    ]
  },
  "distribute/toolsreference/launchchecklist/finalchecks": {
    "title": "",
    "resources": [
      "https://play.google.com/about/developer-content-policy.html",
      "https://support.google.com/googleplay/android-developer/answer/113476",
      "support.html"
    ]
  },
  "distribute/toolsreference/launchchecklist/afterlaunch": {
    "title": "",
    "resources": [
      "https://support.google.com/googleplay/android-developer/answer/113477",
      "https://support.google.com/googleplay/android-developer/answer/1153479",
      "https://support.google.com/payments/answer/2741495",
      "distribute/essentials/optimizing-your-app.html"
    ]
  },
  "distribute/monetize/premium": {
    "title": "",
    "resources": [
      "google/play/billing/index.html",
      "https://support.google.com/googleplay/android-developer/answer/4407611"
    ]
  },
  "distribute/monetize/freemium": {
    "title": "",
    "resources": [
      "google/play/billing/index.html",
      "https://support.google.com/googleplay/android-developer/answer/4407611"
    ]
  },
  "distribute/monetize/subscriptions": {
    "title": "",
    "resources": [
      "google/play/billing/billing_subscriptions.html",
      "https://support.google.com/googleplay/android-developer/answer/4407611"
    ]
  },
  "distribute/monetize/ecommerce": {
    "title": "",
    "resources": [
      "https://developers.google.com/wallet/instant-buy/",
      "https://support.google.com/googleplay/android-developer/answer/4407611"
    ]
  },
  "distribute/monetize/advertising": {
    "title": "",
    "resources": [
      "https://www.google.com/ads/admob/#subid=us-en-et-dac",
      "https://www.google.com/doubleclick/publishers/small-business/index.html",
      "https://support.google.com/googleplay/android-developer/topic/2985714",
      "training/monetization/ads-and-ux.html"
    ]
  },
  "distribute/monetize/admob": {
    "title": "",
    "resources": [
      "https://support.google.com/admob/topic/2784623",
      "https://admob.blogspot.com/",
      "https://analyticsacademy.withgoogle.com/mobile-app",
      "https://www.udacity.com/courses/ud876-3"
    ]
  },
  "distribute/monetize/paymentmethods": {
    "title": "",
    "resources": [
      "https://play.google.com/about/giftcards/",
      "https://support.google.com/googleplay/answer/2651410"
    ]
  },
  "topic/libraries": {
    "title": "",
    "resources": [
      "topic/libraries/support-library/index.html",
      "topic/libraries/testing-support-library/index.html",
      "topic/libraries/data-binding/index.html"
    ]
  },
  "autolanding": {
    "title": "",
    "resources": [
      "auto/index.html",
      "design/auto/index.html",
      "training/auto/index.html"
    ]
  },
  "tvlanding": {
    "title": "",
    "resources": [
      "tv/index.html",
      "design/tv/index.html",
      "training/tv/index.html"
    ]
  },
  "wearlanding": {
    "title": "",
    "resources": [
      "design/wear/index.html",
      "training/building-wearables.html",
      "training/wearables/ui/index.html"
    ]
  },
  "wear/preview/landing": {
    "title": "",
    "resources": [
      "wear/preview/api-overview.html",
      "wear/preview/downloads.html",
      "wear/preview/start.html"
    ]
  },
  "wear/preview/landing/resources": {
    "title": "",
    "resources": [
      "wear/preview/features/complications.html",
      "wear/preview/features/notifications.html",
      "wear/preview/features/ui-nav-actions.html"
    ]
  },
  "design/auto/auto_ui_guidelines": {
    "title": "",
    "resources": [
      "shareables/auto/AndroidAuto-audio-apps.pdf",
      "shareables/auto/AndroidAuto-messaging-apps.pdf",
      "shareables/auto/AndroidAuto-custom-colors.pdf"
    ]
  },
  "training/auto/overview": {
    "title": "",
    "resources": [
      "training/auto/start/index.html",
      "design/auto/index.html",
      "shareables/auto/AndroidAuto-custom-colors.pdf"
    ]
  },
  "training/auto/messaging": {
    "title": "",
    "resources": [
      "training/auto/messaging/index.html",
      "shareables/auto/AndroidAuto-messaging-apps.pdf",
      "samples/MessagingService/index.html"
    ]
  },
  "training/auto/media": {
    "title": "",
    "resources": [
      "training/auto/audio/index.html",
      "shareables/auto/AndroidAuto-audio-apps.pdf",
      "samples/MediaBrowserService/index.html"
    ]
  },
  "training/auto/distribute": {
    "title": "",
    "resources": [
      "distribute/essentials/quality/auto.html",
      "distribute/googleplay/auto.html"
    ]
  },
  "distribute/stories/games": {
    "title": "",
    "resources": [
      "https://storage.googleapis.com/androiddevelopers/shareables/stories/Glu_Deerhunter2014_gpgs.pdf",
      "https://storage.googleapis.com/androiddevelopers/shareables/stories/ConcreteSoftware_PBABowling_gpgs.pdf",
      "https://storage.googleapis.com/androiddevelopers/shareables/stories/Dragonplay_DragonplaySlots_gpgs.pdf",
      "https://storage.googleapis.com/androiddevelopers/shareables/stories/Gameloft_Asphalt8_gpgs.pdf",
      "https://storage.googleapis.com/androiddevelopers/shareables/stories/Glu_EternityWarriors3_gpgs.pdf",
      "https://storage.googleapis.com/androiddevelopers/shareables/stories/HotheadGames_RivalsatWar_gpgs.pdf",
      "https://storage.googleapis.com/androiddevelopers/shareables/stories/TMSOFT_Compulsive_gpgs.pdf",
      "https://storage.googleapis.com/androiddevelopers/shareables/stories/Noodlecake_SuperStickmanGolf2_gpgs.pdf",
      "https://storage.googleapis.com/androiddevelopers/shareables/stories/TinyRebel_DoctorWhoLegacy_gpgs.pdf",
      "https://storage.googleapis.com/androiddevelopers/shareables/stories/Senri_LeosFortune_gpgs.pdf"
    ]
  },
  "training/testing/overview": {
    "title": "",
    "resources": [
      "training/testing/start/index.html",
      "studio/test/index.html",
      "https://www.youtube.com/watch?v=vdasFFfXKOY"
    ]
  },
  "training/testing/tools": {
    "title": "",
    "resources": [
      "topic/libraries/testing-support-library/index.html",
      "studio/test/monkey.html",
      "studio/test/monkeyrunner/index.html",
      "studio/test/command-line.html",
      "https://source.android.com/devices/tech/debug/dumpsys.html"
    ]
  },
  "training/testing/techniques": {
    "title": "",
    "resources": [
      "training/testing/ui-testing/index.html",
      "training/testing/unit-testing/index.html",
      "training/testing/performance.html"
    ]
  },
  "training/testing/resources": {
    "title": "",
    "resources": [
      "https://github.com/googlesamples/android-testing",
      "https://www.youtube.com/watch?v=2I6fuD20qlY",
      "https://codelabs.developers.google.com/codelabs/android-testing/index.html",
      "https://github.com/googlesamples/android-testing-templates",
      "https://google.github.io/android-testing-support-library"
    ]
  },
  "overview/1": {
    "title": "",
    "resources": [
      "distribute/essentials/quality/core.html",
      "distribute/essentials/quality/tablets.html",
      "distribute/tools/launch-checklist.html",
      "studio/publish/index.html",
      "distribute/tools/localization-checklist.html"
    ]
  },
  "overview/2": {
    "title": "",
    "resources": [
      "google/play/billing/index.html",
      "google/play/billing/api.html",
      "google/play/billing/billing_admin.html",
      "google/play/billing/billing_testing.html",
      "google/play/billing/billing_best_practices.html"
    ]
  },
  "overview/3": {
    "title": "",
    "resources": [
      "https://play.google.com/intl/en_us/badges/",
      "distribute/tools/promote/device-art.html",
      "distribute/tools/promote/linking.html",
      "distribute/tools/promote/brand.html",
      "studio/build/shrink-code.html"
    ]
  },
  "overview/4": {
    "title": "",
    "resources": [
      "design/style/writing.html",
      "training/basics/fragments/fragment-ui.html",
      "training/multiscreen/index.html",
      "training/monitoring-device-state/index.html"
    ]
  },
"tools/help/log": {
    "title": "",
    "resources": [
       "studio/debug/am-logcat.html"
    ]
  },
"tools/help/monitor": {
    "title": "",
    "resources": [
       "studio/profile/am-memory.html",
       "studio/profile/am-cpu.html",
       "studio/profile/am-gpu.html",
       "studio/profile/am-network.html"
    ]
  },
 "tools/help/data": {
    "title": "",
    "resources": [
       "studio/profile/am-hprof.html",
       "studio/profile/am-allocation.html",
       "studio/profile/am-methodtrace.html",
       "studio/profile/am-sysinfo.html"
    ]
  },
  "tools/help/shot": {
    "title": "",
    "resources": [
       "studio/debug/am-screenshot.html",
       "studio/debug/am-video.html"
    ]
  },
  "tools/performance/rendering": {
    "title": "",
    "resources": [
      "studio/profile/dev-options-overdraw.html",
      "studio/profile/dev-options-rendering.html",
      "studio/profile/hierarchy-viewer-setup.html",
      "studio/profile/hierarchy-viewer-walkthru.html",
      "studio/profile/hierarchy-viewer-results-walkthru.html"
    ]
  },
  "tools/performance/memory": {
    "title": "",
    "resources": [
      "studio/tools/performance/memory-monitor/index.html",
      "studio/profile/heap-viewer-walkthru.html",
      "studio/profile/allocation-tracker-walkthru.html",
      "studio/tools/performance/comparison.html"
    ]
  },
  "tools/performance/cpu": {
    "title": "",
    "resources": [
      "studio/profile/traceview-walkthru.html",
      "studio/profile/systrace-walkthru.html"
    ]
  },
  "tools/performance/battery": {
    "title": "",
    "resources": [
      "studio/profile/battery-historian.html",
      "studio/profile/battery-historian-charts.html"
    ]
  },
  "marshmallow/landing/resources": {
    "title": "",
    "resources": [
      "about/versions/marshmallow/android-6.0-changes.html",
      "about/versions/marshmallow/android-6.0.html",
      "about/versions/marshmallow/samples.html"
    ]
  },
  "marshmallow/landing/videos": {
    "title": "",
    "resources": [
      "https://youtu.be/U9tw5ypqEN0",
      "https://youtu.be/N72ksDKrX6c",
      "https://youtu.be/iZqDdvhTZj0",
      "https://www.youtube.com/watch?v=vcSj8ln-BlE",
      "https://youtu.be/LQoohRwojmw",
      "https://www.youtube.com/watch?v=VOn7VrTRlA4",
      "https://youtu.be/5sCQjeGoE7M",
      "https://www.youtube.com/watch?v=C8lUdPVSzDk",
      "https://www.youtube.com/watch?v=HXacyy0HSW0",
      "https://www.youtube.com/watch?v=OW1A4XFRuyc",
      "https://www.youtube.com/watch?v=j3QC6hcpy90",
      "https://www.youtube.com/watch?v=f17qe9vZ8RM",
      "https://www.youtube.com/watch?v=ndBdf1_oOGA"
    ]
  },
  "marshmallow/landing/more": {
    "title": "",
    "resources": [
      "training/permissions/requesting.html",
      "training/backup/autosyncapi.html",
      "training/monitoring-device-state/doze-standby.html",
      "training/app-links/index.html",
      "training/articles/assistant.html",
      "training/testing/performance.html",
      "https://developers.google.com/android/nexus/images"
    ]
  },
  "tools/landing/carousel": {
    "title": "",
    "resources": [
    "panel1",
    "panel2",
    "panel3",
    "panel4",
    ]
  },
  "tools/landing/resources": {
    "title": "",
    "resources": [
    "studio/features.html",
    "studio/intro/index.html",
    "studio/build/index.html",
    ]
  },
  "tools/landing/latest": {
    "title": "",
    "resources": [
    "https://medium.com/google-developers/how-often-should-you-update-android-studio-db25785c488e#.8blbql35x",
    "http://android-developers.blogspot.com/2016/04/android-studio-2-0.html",
    "https://medium.com/google-developers/writing-more-code-by-writing-less-code-with-android-studio-live-templates-244f648d17c7#.hczcm02du",
    ]
  },
  "preview/landing/resources": {
    "title": "",
    "resources": [
      "preview/overview.html",
      "preview/api-overview.html",
      "preview/behavior-changes.html",
      "preview/setup-sdk.html",
      "preview/samples.html",
      "preview/support.html"
    ]
  },
  "preview/landing/more": {
    "title": "",
    "resources": [
      "https://www.youtube.com/watch?v=CsulIu3UaUM",
      "preview/features/multi-window.html",
      "preview/features/notification-updates.html",
      "preview/features/background-optimization.html",
      "preview/features/data-saver.html",
      "preview/features/direct-boot.html",
      "preview/features/icu4j-framework.html",
      "preview/features/multilingual-support.html",
      "preview/features/scoped-folder-access.html",
      "preview/features/security-config.html",
      "preview/features/picture-in-picture.html",
      "preview/features/tv-recording-api.html"
    ]
  },
  "work/landing/primary": {
    "title": "",
    "resources": [
      "work/overview.html",
      "work/guide.html",
      "https://www.google.com/work/android/developers/applyDevHub/",
      "work/managed-configurations.html",
      "work/cosu.html",
      "work/managed-profiles.html"
    ]
  },
  "work/landing/resources": {
    "title": "",
    "resources": [
      "https://developers.google.com/android/work/",
      "https://www.google.com/work/android/",
      "https://developers.google.com/android/work/build-dpc",
      "https://www.youtube.com/watch?v=jQWB_-o1kz4&list=PLOU2XLYxmsIKAK2Bhv19H2THwF-22O5WX",
      "https://www.youtube.com/watch?v=Za0OQo8DRM4",
      "https://www.youtube.com/watch?v=dH41OutAMNM&list=PLOU2XLYxmsIKAK2Bhv19H2THwF-22O5WX"
    ]
  },
  "work/apps": {
    "title": "",
    "resources": [
      "work/managed-profiles.html",
      "work/managed-configurations.html",
      "work/cosu.html",
      "https://www.youtube.com/watch?v=39NkpWkaH8M&index=2&list=PLOU2XLYxmsIKAK2Bhv19H2THwF-22O5WX",
      "samples/AppRestrictionSchema/index.html",
      "samples/AppRestrictionEnforcer/index.html"
    ]
  },
  "work/admin": {
    "title": "",
    "resources": [
      "https://developers.google.com/android/work/build-dpc",
      "samples/BasicManagedProfile/index.html",
      "https://www.youtube.com/watch?v=j3QC6hcpy90"
    ]
  }
};

/**
 * Static search results.

   Metadata objects returned in search results page when the user enters
   each object's keyword.
 */
METADATA['en'].searchHeroCollections = {
  "material": {
    "title":"Material Design for Android",
    "category":"",
    "summary":"Material design is a comprehensive guide for visual, motion, and interaction design across platforms and devices. Android now includes support for material design apps.",
    "url":"design/material/index.html",
    "group":"",
    "keywords": ["material","design"],
    "tags": ["material","design"],
    "image":"images/cards/design-material-for-android_2x.jpg",
    "lang":"en",
    "type":"design"
  }
};