summary refs log tree commit diff
path: root/pkgs/development/mobile/androidenv/repo.json
blob: e8e0bf080fef677dd7722b7d85ab429dd70d6039 (plain) (blame)
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
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
{
  "addons": {
    "10": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "cc0711857c881fa7534f90cf8cc09b8fe985484d",
            "size": 65781578,
            "url": "https://dl.google.com/android/repository/google_apis-10_r02.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-10",
        "revision": "10"
      }
    },
    "11": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "5eab5e81addee9f3576d456d205208314b5146a5",
            "size": 83477179,
            "url": "https://dl.google.com/android/repository/google_apis-11_r01.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-11",
        "revision": "11"
      }
    },
    "12": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "e9999f4fa978812174dfeceec0721c793a636e5d",
            "size": 86099835,
            "url": "https://dl.google.com/android/repository/google_apis-12_r01.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-12",
        "revision": "12"
      },
      "google_tv_addon": {
        "archives": [
          {
            "os": "all",
            "sha1": "92128a12e7e8b0fb5bac59153d7779b717e7b840",
            "size": 78266751,
            "url": "https://dl.google.com/android/repository/google_tv-12_r02.zip"
          }
        ],
        "displayName": "Google TV Addon",
        "license": "android-googletv-license",
        "name": "google_tv_addon",
        "path": "add-ons/addon-google_tv_addon-google-12",
        "revision": "12"
      }
    },
    "13": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "3b153edd211c27dc736c893c658418a4f9041417",
            "size": 88615525,
            "url": "https://dl.google.com/android/repository/google_apis-13_r01.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-13",
        "revision": "13"
      },
      "google_tv_addon": {
        "archives": [
          {
            "os": "all",
            "sha1": "b73f7c66011ac8180b44aa4e83b8d78c66ea9a09",
            "size": 87721879,
            "url": "https://dl.google.com/android/repository/google_tv-13_r01.zip"
          }
        ],
        "displayName": "Google TV Addon",
        "license": "android-googletv-license",
        "name": "google_tv_addon",
        "path": "add-ons/addon-google_tv_addon-google-13",
        "revision": "13"
      }
    },
    "14": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "f8eb4d96ad0492b4c0db2d7e4f1a1a3836664d39",
            "size": 106533714,
            "url": "https://dl.google.com/android/repository/google_apis-14_r02.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-14",
        "revision": "14"
      }
    },
    "15": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "d0d2bf26805eb271693570a1aaec33e7dc3f45e9",
            "size": 106624396,
            "url": "https://dl.google.com/android/repository/google_apis-15_r03.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-15",
        "revision": "15"
      }
    },
    "16": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "ee6acf1b01020bfa8a8e24725dbc4478bee5e792",
            "size": 127341982,
            "url": "https://dl.google.com/android/repository/google_apis-16_r04.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-16",
        "revision": "16"
      }
    },
    "17": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "a076be0677f38df8ca5536b44dfb411a0c808c4f",
            "size": 137231243,
            "url": "https://dl.google.com/android/repository/google_apis-17_r04.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-17",
        "revision": "17"
      }
    },
    "18": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "6109603409debdd40854d4d4a92eaf8481462c8b",
            "size": 143195183,
            "url": "https://dl.google.com/android/repository/google_apis-18_r04.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-18",
        "revision": "18"
      }
    },
    "19": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "5b933abe830b2f25b4c0f171d45e9e0651e56311",
            "size": 147081,
            "url": "https://dl.google.com/android/repository/google_apis-19_r20.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-19",
        "revision": "19"
      }
    },
    "21": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "66a754efb24e9bb07cc51648426443c7586c9d4a",
            "size": 179499,
            "url": "https://dl.google.com/android/repository/google_apis-21_r01.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-21",
        "revision": "21"
      }
    },
    "22": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "5def0f42160cba8acff51b9c0c7e8be313de84f5",
            "size": 179259,
            "url": "https://dl.google.com/android/repository/google_apis-22_r01.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-22",
        "revision": "22"
      }
    },
    "23": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "04c5cc1a7c88967250ebba9561d81e24104167db",
            "size": 179900,
            "url": "https://dl.google.com/android/repository/google_apis-23_r01.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-23",
        "revision": "23"
      }
    },
    "24": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "31361c2868f27343ee917fbd259c1463821b6145",
            "size": 154865,
            "url": "https://dl.google.com/android/repository/google_apis-24_r1.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-24",
        "revision": "24"
      }
    },
    "25": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "550e83eea9513ab11c44919ac6da54b36084a9f3",
            "size": 154871,
            "url": "https://dl.google.com/android/repository/google_apis-25_r1.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-25",
        "revision": "25"
      }
    },
    "3": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "1f92abf3a76be66ae8032257fc7620acbd2b2e3a",
            "size": 34908058,
            "url": "https://dl.google.com/android/repository/google_apis-3-r03.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-3",
        "revision": "3"
      }
    },
    "4": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "9b6e86d8568558de4d606a7debc4f6049608dbd0",
            "size": 42435735,
            "url": "https://dl.google.com/android/repository/google_apis-4_r02.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-4",
        "revision": "4"
      }
    },
    "5": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "46eaeb56b645ee7ffa24ede8fa17f3df70db0503",
            "size": 49123776,
            "url": "https://dl.google.com/android/repository/google_apis-5_r01.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-5",
        "revision": "5"
      }
    },
    "6": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "5ff545d96e031e09580a6cf55713015c7d4936b2",
            "size": 53382941,
            "url": "https://dl.google.com/android/repository/google_apis-6_r01.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-6",
        "revision": "6"
      }
    },
    "7": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "2e7f91e0fe34fef7f58aeced973c6ae52361b5ac",
            "size": 53691339,
            "url": "https://dl.google.com/android/repository/google_apis-7_r01.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-7",
        "revision": "7"
      }
    },
    "8": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "3079958e7ec87222cac1e6b27bc471b27bf2c352",
            "size": 59505020,
            "url": "https://dl.google.com/android/repository/google_apis-8_r02.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-8",
        "revision": "8"
      }
    },
    "9": {
      "google_apis": {
        "archives": [
          {
            "os": "all",
            "sha1": "78664645a1e9accea4430814f8694291a7f1ea5d",
            "size": 63401546,
            "url": "https://dl.google.com/android/repository/google_apis-9_r02.zip"
          }
        ],
        "displayName": "Google APIs",
        "license": "android-sdk-license",
        "name": "google_apis",
        "path": "add-ons/addon-google_apis-google-9",
        "revision": "9"
      }
    }
  },
  "extras": {
    "extras;android;m2repository": {
      "archives": [
        {
          "os": "all",
          "sha1": "a0d22beacc106a6977321f2b07d692ce4979e96a",
          "size": 355529608,
          "url": "https://dl.google.com/android/repository/android_m2repository_r47.zip"
        }
      ],
      "displayName": "Android Support Repository",
      "license": "android-sdk-license",
      "name": "extras-android-m2repository",
      "path": "extras/android/m2repository",
      "revision": "47.0.0"
    },
    "extras;google;Android_Emulator_Hypervisor_Driver": {
      "archives": [
        {
          "os": "windows",
          "sha1": "1d35ead3cdfaf6e51001455f66a2db102dd647b7",
          "size": 167191,
          "url": "https://dl.google.com/android/repository/gvm-windows_v1_7_0.zip"
        }
      ],
      "displayName": "Android Emulator Hypervisor Driver for AMD Processors (installer)",
      "license": "android-sdk-license",
      "name": "extras-google-Android_Emulator_Hypervisor_Driver",
      "path": "extras/google/Android_Emulator_Hypervisor_Driver",
      "revision": "1.7.0"
    },
    "extras;google;admob_ads_sdk": {
      "archives": [
        {
          "os": "all",
          "sha1": "0102859d9575baa0bf4fd5eb422af2ad0fe6cb82",
          "size": 704512,
          "url": "https://dl.google.com/android/repository/GoogleAdMobAdsSdkAndroid-6.4.1.zip"
        }
      ],
      "displayName": "Google AdMob Ads SDK",
      "license": "android-sdk-license",
      "name": "extras-google-admob_ads_sdk",
      "path": "extras/google/admob_ads_sdk",
      "revision": "11"
    },
    "extras;google;analytics_sdk_v2": {
      "archives": [
        {
          "os": "all",
          "sha1": "dc14026bf0ce78315cb5dd00552607de0894de83",
          "size": 211432,
          "url": "https://dl.google.com/android/repository/GoogleAnalyticsAndroid_2.0beta5.zip"
        }
      ],
      "displayName": "Google Analytics App Tracking SDK",
      "license": "android-sdk-license",
      "name": "extras-google-analytics_sdk_v2",
      "path": "extras/google/analytics_sdk_v2",
      "revision": "3"
    },
    "extras;google;gcm": {
      "archives": [
        {
          "os": "all",
          "sha1": "ad066fd0dc7fc99d8aadac09c65a3c2519fbc7bf",
          "size": 5901400,
          "url": "https://dl.google.com/android/repository/gcm_r03.zip"
        }
      ],
      "displayName": "Google Cloud Messaging for Android Library",
      "license": "android-sdk-license",
      "name": "extras-google-gcm",
      "path": "extras/google/gcm",
      "revision": "3"
    },
    "extras;google;google_play_services": {
      "archives": [
        {
          "os": "all",
          "sha1": "f95bf19634e2ab0430923247fe2c50246432d2e9",
          "size": 15456884,
          "url": "https://dl.google.com/android/repository/google_play_services_v16_1_rc09.zip"
        }
      ],
      "displayName": "Google Play services",
      "license": "android-sdk-license",
      "name": "extras-google-google_play_services",
      "path": "extras/google/google_play_services",
      "revision": "49"
    },
    "extras;google;google_play_services_froyo": {
      "archives": [
        {
          "os": "all",
          "sha1": "92558dbc380bba3d55d0ec181167fb05ce7c79d9",
          "size": 5265389,
          "url": "https://dl.google.com/android/repository/google_play_services_3265130_r12.zip"
        }
      ],
      "displayName": "Google Play services for Froyo",
      "license": "android-sdk-license",
      "name": "extras-google-google_play_services_froyo",
      "path": "extras/google/google_play_services_froyo",
      "revision": "12"
    },
    "extras;google;instantapps": {
      "archives": [
        {
          "os": "all",
          "sha1": "c498367dcd7db30154b3e70c4ddbb1b0ea4b8d20",
          "size": 39524850,
          "url": "https://dl.google.com/android/repository/iasdk-1.9.0-1566514721.zip"
        }
      ],
      "displayName": "Google Play Instant Development SDK",
      "license": "android-sdk-license",
      "name": "extras-google-instantapps",
      "path": "extras/google/instantapps",
      "revision": "1.9.0"
    },
    "extras;google;m2repository": {
      "archives": [
        {
          "os": "all",
          "sha1": "05086add9e3a0eb1b67111108d7757a4337c3f10",
          "size": 215426029,
          "url": "https://dl.google.com/android/repository/google_m2repository_gms_v11_3_rc05_wear_2_0_5.zip"
        }
      ],
      "displayName": "Google Repository",
      "license": "android-sdk-license",
      "name": "extras-google-m2repository",
      "path": "extras/google/m2repository",
      "revision": "58"
    },
    "extras;google;market_apk_expansion": {
      "archives": [
        {
          "os": "all",
          "sha1": "5305399dc1a56814e86b8459ce24871916f78b8c",
          "size": 110201,
          "url": "https://dl.google.com/android/repository/market_apk_expansion-r03.zip"
        }
      ],
      "displayName": "Google Play APK Expansion library",
      "license": "android-sdk-license",
      "name": "extras-google-market_apk_expansion",
      "path": "extras/google/market_apk_expansion",
      "revision": "1"
    },
    "extras;google;market_licensing": {
      "archives": [
        {
          "os": "all",
          "sha1": "355e8dc304a92a5616db235af8ee7bd554356254",
          "size": 75109,
          "url": "https://dl.google.com/android/repository/market_licensing-r02.zip"
        }
      ],
      "displayName": "Google Play Licensing Library",
      "license": "android-sdk-license",
      "name": "extras-google-market_licensing",
      "path": "extras/google/market_licensing",
      "revision": "1"
    },
    "extras;google;simulators": {
      "archives": [
        {
          "os": "all",
          "sha1": "4fb5344e34e8faab4db18af07dace44c50db26a7",
          "size": 2167286,
          "url": "https://dl.google.com/android/repository/simulator_r01.zip"
        }
      ],
      "displayName": "Android Auto API Simulators",
      "license": "android-sdk-license",
      "name": "extras-google-simulators",
      "path": "extras/google/simulators",
      "revision": "1"
    },
    "extras;google;usb_driver": {
      "archives": [
        {
          "os": "windows",
          "sha1": "08a48c39084e9443f6146c239cbd3be6f91e681b",
          "size": 8682039,
          "url": "https://dl.google.com/android/repository/usb_driver_r13-windows.zip"
        }
      ],
      "displayName": "Google USB Driver",
      "license": "android-sdk-license",
      "name": "extras-google-usb_driver",
      "path": "extras/google/usb_driver",
      "revision": "13"
    },
    "extras;google;webdriver": {
      "archives": [
        {
          "os": "all",
          "sha1": "13f3a3b2670a5fc04a7342861644be9a01b07e38",
          "size": 4055193,
          "url": "https://dl.google.com/android/repository/webdriver_r02.zip"
        }
      ],
      "displayName": "Google Web Driver",
      "license": "android-sdk-license",
      "name": "extras-google-webdriver",
      "path": "extras/google/webdriver",
      "revision": "2"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0": {
      "archives": [
        {
          "os": "all",
          "sha1": "b621b9d5adf273bb0725948589863e60e96eeaf1",
          "size": 91207,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-solver-1.0.0.zip"
        }
      ],
      "displayName": "Solver for ConstraintLayout 1.0.0",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-solver-1.0.0",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout-solver/1.0.0",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0-alpha4": {
      "archives": [
        {
          "os": "all",
          "sha1": "2aa2aceecc6ba172742d0af0b43f11d03924eeb8",
          "size": 95406,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-solver-1.0.0-alpha4.zip"
        }
      ],
      "displayName": "com.android.support.constraint:constraint-layout-solver:1.0.0-alpha4",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-solver-1.0.0-alpha4",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout-solver/1.0.0-alpha4",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0-alpha8": {
      "archives": [
        {
          "os": "all",
          "sha1": "cd13d16a8f0198c1d6040ec8b1d0d4e5bb7feb6a",
          "size": 97549,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-solver-1.0.0-alpha8.zip"
        }
      ],
      "displayName": "Solver for ConstraintLayout 1.0.0-alpha8",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-solver-1.0.0-alpha8",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout-solver/1.0.0-alpha8",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0-beta1": {
      "archives": [
        {
          "os": "all",
          "sha1": "042c25575e7650e96f0f5f5d1d3c54ed38eb821a",
          "size": 104706,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-solver-1.0.0-beta1.zip"
        }
      ],
      "displayName": "Solver for ConstraintLayout 1.0.0-beta1",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-solver-1.0.0-beta1",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout-solver/1.0.0-beta1",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0-beta2": {
      "archives": [
        {
          "os": "all",
          "sha1": "28492fd42b20ae1586591ff906556d459cfdaae8",
          "size": 107335,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-solver-1.0.0-beta2.zip"
        }
      ],
      "displayName": "Solver for ConstraintLayout 1.0.0-beta2",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-solver-1.0.0-beta2",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout-solver/1.0.0-beta2",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0-beta3": {
      "archives": [
        {
          "os": "all",
          "sha1": "268e763fa64bd217d8d830e59ce76be19aaba631",
          "size": 107593,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-solver-1.0.0-beta3.zip"
        }
      ],
      "displayName": "Solver for ConstraintLayout 1.0.0-beta3",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-solver-1.0.0-beta3",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout-solver/1.0.0-beta3",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0-beta4": {
      "archives": [
        {
          "os": "all",
          "sha1": "2213bf37e7a2869db2635895b8e90ca6841e79d2",
          "size": 109361,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-solver-1.0.0-beta4.zip"
        }
      ],
      "displayName": "Solver for ConstraintLayout 1.0.0-beta4",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-solver-1.0.0-beta4",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout-solver/1.0.0-beta4",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.0-beta5": {
      "archives": [
        {
          "os": "all",
          "sha1": "3918cfef73e64048d0b3e048068e208b414e7e91",
          "size": 92284,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-solver-1.0.0-beta5.zip"
        }
      ],
      "displayName": "Solver for ConstraintLayout 1.0.0-beta5",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-solver-1.0.0-beta5",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout-solver/1.0.0-beta5",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.1": {
      "archives": [
        {
          "os": "all",
          "sha1": "76f8823def9a6da8954a54737762a6820bc1d043",
          "size": 91823,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-solver-1.0.1.zip"
        }
      ],
      "displayName": "Solver for ConstraintLayout 1.0.1",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-solver-1.0.1",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout-solver/1.0.1",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout-solver;1.0.2": {
      "archives": [
        {
          "os": "all",
          "sha1": "96d7ff669f0e808e9833b2c2e320702826ccc8be",
          "size": 91961,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-solver-1.0.2.zip"
        }
      ],
      "displayName": "Solver for ConstraintLayout 1.0.2",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-solver-1.0.2",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout-solver/1.0.2",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0": {
      "archives": [
        {
          "os": "all",
          "sha1": "70acf99689b933bc6735645d5c3d92b91954b6cb",
          "size": 39153,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-1.0.0.zip"
        }
      ],
      "displayName": "ConstraintLayout for Android 1.0.0",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-1.0.0",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout/1.0.0",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0-alpha4": {
      "archives": [
        {
          "os": "all",
          "sha1": "645a9be1f0c1177301e71cd0ddccf1dd67c554fe",
          "size": 15554,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-1.0.0-alpha4.zip"
        }
      ],
      "displayName": "com.android.support.constraint:constraint-layout:1.0.0-alpha4",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-1.0.0-alpha4",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout/1.0.0-alpha4",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0-alpha8": {
      "archives": [
        {
          "os": "all",
          "sha1": "7912ba03b04831f918f523648f118c4ee4da7604",
          "size": 24797,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-1.0.0-alpha8.zip"
        }
      ],
      "displayName": "ConstraintLayout for Android 1.0.0-alpha8",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-1.0.0-alpha8",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout/1.0.0-alpha8",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0-beta1": {
      "archives": [
        {
          "os": "all",
          "sha1": "11f2f5cec4ff02986bad75435e5be77b704b4c64",
          "size": 31750,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-1.0.0-beta1.zip"
        }
      ],
      "displayName": "ConstraintLayout for Android 1.0.0-beta1",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-1.0.0-beta1",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout/1.0.0-beta1",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0-beta2": {
      "archives": [
        {
          "os": "all",
          "sha1": "623939865ede2e5c2c975dc55963e0d182bcce95",
          "size": 31812,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-1.0.0-beta2.zip"
        }
      ],
      "displayName": "ConstraintLayout for Android 1.0.0-beta2",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-1.0.0-beta2",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout/1.0.0-beta2",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0-beta3": {
      "archives": [
        {
          "os": "all",
          "sha1": "d78bb6a8ce92005fb1e4ed55d892a65b4258c60b",
          "size": 32622,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-1.0.0-beta3.zip"
        }
      ],
      "displayName": "ConstraintLayout for Android 1.0.0-beta3",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-1.0.0-beta3",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout/1.0.0-beta3",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0-beta4": {
      "archives": [
        {
          "os": "all",
          "sha1": "dc60844aab93a09a54a3c107685a77b18d7c1c39",
          "size": 32687,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-1.0.0-beta4.zip"
        }
      ],
      "displayName": "ConstraintLayout for Android 1.0.0-beta4",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-1.0.0-beta4",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout/1.0.0-beta4",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout;1.0.0-beta5": {
      "archives": [
        {
          "os": "all",
          "sha1": "4660f6c7a576ea1364f0c3225db71c29ca660d9a",
          "size": 39266,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-1.0.0-beta5.zip"
        }
      ],
      "displayName": "ConstraintLayout for Android 1.0.0-beta5",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-1.0.0-beta5",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout/1.0.0-beta5",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout;1.0.1": {
      "archives": [
        {
          "os": "all",
          "sha1": "342b0894b8651fff37586f80f383733e97aba9f9",
          "size": 39547,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-1.0.1.zip"
        }
      ],
      "displayName": "ConstraintLayout for Android 1.0.1",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-1.0.1",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout/1.0.1",
      "revision": "1"
    },
    "extras;m2repository;com;android;support;constraint;constraint-layout;1.0.2": {
      "archives": [
        {
          "os": "all",
          "sha1": "3d9688a50fe0ed7348275f85d1b02278f616d8a4",
          "size": 39625,
          "url": "https://dl.google.com/android/repository/com.android.support.constraint-constraint-layout-1.0.2.zip"
        }
      ],
      "displayName": "ConstraintLayout for Android 1.0.2",
      "license": "android-sdk-license",
      "name": "extras-m2repository-com-android-support-constraint-constraint-layout-1.0.2",
      "path": "extras/m2repository/com/android/support/constraint/constraint-layout/1.0.2",
      "revision": "1"
    }
  },
  "images": {
    "10": {
      "google_apis": {
        "armeabi-v7a": {
          "archives": [
            {
              "os": "all",
              "sha1": "970abf3a2a9937a43576afd9bb56e4a8191947f8",
              "size": 110706432,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/armeabi-v7a-10_r06.zip"
            }
          ],
          "displayName": "Google APIs ARM EABI v7a System Image",
          "license": "android-sdk-license",
          "name": "system-image-10-google_apis-armeabi-v7a",
          "path": "system-images/android-10/google_apis/armeabi-v7a",
          "revision": "10-google_apis-armeabi-v7a"
        },
        "x86": {
          "archives": [
            {
              "os": "all",
              "sha1": "070a9552e3d358d8e72e8b2042e539e2b7a1b035",
              "size": 118634346,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/x86-10_r06.zip"
            }
          ],
          "displayName": "Google APIs Intel x86 Atom System Image",
          "license": "android-sdk-license",
          "name": "system-image-10-google_apis-x86",
          "path": "system-images/android-10/google_apis/x86",
          "revision": "10-google_apis-x86"
        }
      }
    },
    "14": {
      "default": {
        "armeabi-v7a": {
          "archives": [
            {
              "os": "all",
              "sha1": "d8991b0c06b18d7d6ed4169d67460ee1add6661b",
              "size": 99621822,
              "url": "https://dl.google.com/android/repository/sys-img/default/sysimg_armv7a-14_r02.zip"
            }
          ],
          "displayName": "ARM EABI v7a System Image",
          "license": "android-sdk-license",
          "name": "system-image-14-default-armeabi-v7a",
          "path": "system-images/android-14/default/armeabi-v7a",
          "revision": "14-default-armeabi-v7a"
        }
      }
    },
    "15": {
      "google_apis": {
        "armeabi-v7a": {
          "archives": [
            {
              "os": "all",
              "sha1": "6deb76cf34760a6037cb18d89772c9e986d07497",
              "size": 148773442,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/armeabi-v7a-15_r06.zip"
            }
          ],
          "displayName": "Google APIs ARM EABI v7a System Image",
          "license": "android-sdk-license",
          "name": "system-image-15-google_apis-armeabi-v7a",
          "path": "system-images/android-15/google_apis/armeabi-v7a",
          "revision": "15-google_apis-armeabi-v7a"
        },
        "x86": {
          "archives": [
            {
              "os": "all",
              "sha1": "5ef2c5481f5bb8789c0b5224d46fb2e13602a450",
              "size": 163325511,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/x86-15_r07.zip"
            }
          ],
          "displayName": "Google APIs Intel x86 Atom System Image",
          "license": "android-sdk-license",
          "name": "system-image-15-google_apis-x86",
          "path": "system-images/android-15/google_apis/x86",
          "revision": "15-google_apis-x86"
        }
      }
    },
    "16": {
      "google_apis": {
        "armeabi-v7a": {
          "archives": [
            {
              "os": "all",
              "sha1": "5a5ff097680c6dae473c8719296ce6d7b70edb2d",
              "size": 168845378,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/armeabi-v7a-16_r06.zip"
            }
          ],
          "displayName": "Google APIs ARM EABI v7a System Image",
          "license": "android-sdk-license",
          "name": "system-image-16-google_apis-armeabi-v7a",
          "path": "system-images/android-16/google_apis/armeabi-v7a",
          "revision": "16-google_apis-armeabi-v7a"
        },
        "x86": {
          "archives": [
            {
              "os": "all",
              "sha1": "246903c75f5aa3db7fb58cac877f2201fbbfd94a",
              "size": 186372521,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/x86-16_r07.zip"
            }
          ],
          "displayName": "Google APIs Intel x86 Atom System Image",
          "license": "android-sdk-license",
          "name": "system-image-16-google_apis-x86",
          "path": "system-images/android-16/google_apis/x86",
          "revision": "16-google_apis-x86"
        }
      }
    },
    "17": {
      "google_apis": {
        "armeabi-v7a": {
          "archives": [
            {
              "os": "all",
              "sha1": "a59f26cb5707da97e869a27d87b83477204ac594",
              "size": 174631794,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/armeabi-v7a-17_r06.zip"
            }
          ],
          "displayName": "Google APIs ARM EABI v7a System Image",
          "license": "android-sdk-license",
          "name": "system-image-17-google_apis-armeabi-v7a",
          "path": "system-images/android-17/google_apis/armeabi-v7a",
          "revision": "17-google_apis-armeabi-v7a"
        },
        "x86": {
          "archives": [
            {
              "os": "all",
              "sha1": "1ad5ffb51e31f5fe9fa47411fed2c2ade9a33865",
              "size": 194811128,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/x86-17_r07.zip"
            }
          ],
          "displayName": "Google APIs Intel x86 Atom System Image",
          "license": "android-sdk-license",
          "name": "system-image-17-google_apis-x86",
          "path": "system-images/android-17/google_apis/x86",
          "revision": "17-google_apis-x86"
        }
      }
    },
    "18": {
      "google_apis": {
        "armeabi-v7a": {
          "archives": [
            {
              "os": "all",
              "sha1": "7faaccabbcc5f08e410436d3f63eea42521ea974",
              "size": 179015960,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/armeabi-v7a-18_r06.zip"
            }
          ],
          "displayName": "Google APIs ARM EABI v7a System Image",
          "license": "android-sdk-license",
          "name": "system-image-18-google_apis-armeabi-v7a",
          "path": "system-images/android-18/google_apis/armeabi-v7a",
          "revision": "18-google_apis-armeabi-v7a"
        },
        "x86": {
          "archives": [
            {
              "os": "all",
              "sha1": "dd674d719cad61602702be4b3d98edccfbfea53e",
              "size": 199963568,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/x86-18_r06.zip"
            }
          ],
          "displayName": "Google APIs Intel x86 Atom System Image",
          "license": "android-sdk-license",
          "name": "system-image-18-google_apis-x86",
          "path": "system-images/android-18/google_apis/x86",
          "revision": "18-google_apis-x86"
        }
      }
    },
    "19": {
      "google_apis": {
        "armeabi-v7a": {
          "archives": [
            {
              "os": "all",
              "sha1": "053741c7ef72c7d41394b8a09a1b86238c59c741",
              "size": 245902018,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/armeabi-v7a-19_r40.zip"
            }
          ],
          "displayName": "Google APIs ARM EABI v7a System Image",
          "license": "android-sdk-license",
          "name": "system-image-19-google_apis-armeabi-v7a",
          "path": "system-images/android-19/google_apis/armeabi-v7a",
          "revision": "19-google_apis-armeabi-v7a"
        },
        "x86": {
          "archives": [
            {
              "os": "all",
              "sha1": "67528907f6f4479112f63097f4657dad10783f5a",
              "size": 297020632,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/x86-19_r40.zip"
            }
          ],
          "displayName": "Google APIs Intel x86 Atom System Image",
          "license": "android-sdk-license",
          "name": "system-image-19-google_apis-x86",
          "path": "system-images/android-19/google_apis/x86",
          "revision": "19-google_apis-x86"
        }
      }
    },
    "21": {
      "google_apis": {
        "armeabi-v7a": {
          "archives": [
            {
              "os": "all",
              "sha1": "7aa0a1971365de1dc7989720c643121087026564",
              "size": 290282953,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/armeabi-v7a-21_r32.zip"
            }
          ],
          "displayName": "Google APIs ARM EABI v7a System Image",
          "license": "android-sdk-license",
          "name": "system-image-21-google_apis-armeabi-v7a",
          "path": "system-images/android-21/google_apis/armeabi-v7a",
          "revision": "21-google_apis-armeabi-v7a"
        },
        "x86": {
          "archives": [
            {
              "os": "all",
              "sha1": "c6c1d774cec79e6e71c2a24c96d0c45c043d752c",
              "size": 319430034,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/x86-21_r32.zip"
            }
          ],
          "displayName": "Google APIs Intel x86 Atom System Image",
          "license": "android-sdk-license",
          "name": "system-image-21-google_apis-x86",
          "path": "system-images/android-21/google_apis/x86",
          "revision": "21-google_apis-x86"
        },
        "x86_64": {
          "archives": [
            {
              "os": "all",
              "sha1": "e98ba60a0fc88d9a81a768e62db5850b6610baa4",
              "size": 415495987,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/x86_64-21_r32.zip"
            }
          ],
          "displayName": "Google APIs Intel x86 Atom_64 System Image",
          "license": "android-sdk-license",
          "name": "system-image-21-google_apis-x86_64",
          "path": "system-images/android-21/google_apis/x86_64",
          "revision": "21-google_apis-x86_64"
        }
      }
    },
    "22": {
      "google_apis": {
        "armeabi-v7a": {
          "archives": [
            {
              "os": "all",
              "sha1": "6a61dd66ec8ac8e678cc19c1331047dade07509f",
              "size": 394864140,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/armeabi-v7a-22_r26.zip"
            }
          ],
          "displayName": "Google APIs ARM EABI v7a System Image",
          "license": "android-sdk-license",
          "name": "system-image-22-google_apis-armeabi-v7a",
          "path": "system-images/android-22/google_apis/armeabi-v7a",
          "revision": "22-google_apis-armeabi-v7a"
        },
        "x86": {
          "archives": [
            {
              "os": "all",
              "sha1": "859ca1d8dcdaaf931effda3f06af95a3740b60d9",
              "size": 421293384,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/x86-22_r26.zip"
            }
          ],
          "displayName": "Google APIs Intel x86 Atom System Image",
          "license": "android-sdk-license",
          "name": "system-image-22-google_apis-x86",
          "path": "system-images/android-22/google_apis/x86",
          "revision": "22-google_apis-x86"
        },
        "x86_64": {
          "archives": [
            {
              "os": "all",
              "sha1": "f99714383c5459d747ac7cdd8043419c6adafe60",
              "size": 579197399,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/x86_64-22_r26.zip"
            }
          ],
          "displayName": "Google APIs Intel x86 Atom_64 System Image",
          "license": "android-sdk-license",
          "name": "system-image-22-google_apis-x86_64",
          "path": "system-images/android-22/google_apis/x86_64",
          "revision": "22-google_apis-x86_64"
        }
      }
    },
    "23": {
      "google_apis": {
        "armeabi-v7a": {
          "archives": [
            {
              "os": "all",
              "sha1": "d03ac51742e9d7eea559cbef4f44d18d1fc9c92d",
              "size": 468621931,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/armeabi-v7a-23_r33.zip"
            }
          ],
          "displayName": "Google APIs ARM EABI v7a System Image",
          "license": "android-sdk-license",
          "name": "system-image-23-google_apis-armeabi-v7a",
          "path": "system-images/android-23/google_apis/armeabi-v7a",
          "revision": "23-google_apis-armeabi-v7a"
        },
        "x86": {
          "archives": [
            {
              "os": "all",
              "sha1": "c1d91dfcbaa9f1a6b9698893ce995b2771cd6a16",
              "size": 499428151,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/x86-23_r33.zip"
            }
          ],
          "displayName": "Google APIs Intel x86 Atom System Image",
          "license": "android-sdk-license",
          "name": "system-image-23-google_apis-x86",
          "path": "system-images/android-23/google_apis/x86",
          "revision": "23-google_apis-x86"
        },
        "x86_64": {
          "archives": [
            {
              "os": "all",
              "sha1": "4d80dd38edb565641b3b34e713fe0ec6d1d77698",
              "size": 667471680,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis/x86_64-23_r33.zip"
            }
          ],
          "displayName": "Google APIs Intel x86 Atom_64 System Image",
          "license": "android-sdk-license",
          "name": "system-image-23-google_apis-x86_64",
          "path": "system-images/android-23/google_apis/x86_64",
          "revision": "23-google_apis-x86_64"
        }
      }
    },
    "24": {
      "google_apis_playstore": {
        "x86": {
          "archives": [
            {
              "os": "all",
              "sha1": "b52e9593ffdde65c1a0970256a32e8967c89cc22",
              "size": 812724041,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86-24_r19.zip"
            }
          ],
          "displayName": "Google Play Intel x86 Atom System Image",
          "license": "android-sdk-license",
          "name": "system-image-24-google_apis_playstore-x86",
          "path": "system-images/android-24/google_apis_playstore/x86",
          "revision": "24-google_apis_playstore-x86"
        }
      }
    },
    "25": {
      "google_apis_playstore": {
        "x86": {
          "archives": [
            {
              "os": "all",
              "sha1": "6f6668954f7fd52f896fe7528aa122028c9b026c",
              "size": 972461719,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86-25_r09.zip"
            }
          ],
          "displayName": "Google Play Intel x86 Atom System Image",
          "license": "android-sdk-license",
          "name": "system-image-25-google_apis_playstore-x86",
          "path": "system-images/android-25/google_apis_playstore/x86",
          "revision": "25-google_apis_playstore-x86"
        }
      }
    },
    "26": {
      "google_apis_playstore": {
        "x86": {
          "archives": [
            {
              "os": "all",
              "sha1": "2c8bee7b97a309f099941532e63c42a7d4a06e19",
              "size": 769390078,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86-26_r07.zip"
            }
          ],
          "displayName": "Google Play Intel x86 Atom System Image",
          "license": "android-sdk-preview-license",
          "name": "system-image-26-google_apis_playstore-x86",
          "path": "system-images/android-26/google_apis_playstore/x86",
          "revision": "26-google_apis_playstore-x86"
        }
      }
    },
    "27": {
      "google_apis_playstore": {
        "x86": {
          "archives": [
            {
              "os": "all",
              "sha1": "eb5a944ceb691ca0648d0a6f0d93893a47223b5d",
              "size": 758636016,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86-27_r03.zip"
            }
          ],
          "displayName": "Google Play Intel x86 Atom System Image",
          "license": "android-sdk-license",
          "name": "system-image-27-google_apis_playstore-x86",
          "path": "system-images/android-27/google_apis_playstore/x86",
          "revision": "27-google_apis_playstore-x86"
        }
      }
    },
    "28": {
      "google_apis_playstore": {
        "x86": {
          "archives": [
            {
              "os": "all",
              "sha1": "97d9d4f4a2afa8b0f5d52e90748e19c10406ca93",
              "size": 918028186,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86-28_r09.zip"
            }
          ],
          "displayName": "Google Play Intel x86 Atom System Image",
          "license": "android-sdk-license",
          "name": "system-image-28-google_apis_playstore-x86",
          "path": "system-images/android-28/google_apis_playstore/x86",
          "revision": "28-google_apis_playstore-x86"
        },
        "x86_64": {
          "archives": [
            {
              "os": "all",
              "sha1": "a767da996fdea7a1f5632a9206fa5c009d6e580c",
              "size": 1037659724,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86_64-28_r08.zip"
            }
          ],
          "displayName": "Google Play Intel x86 Atom_64 System Image",
          "license": "android-sdk-license",
          "name": "system-image-28-google_apis_playstore-x86_64",
          "path": "system-images/android-28/google_apis_playstore/x86_64",
          "revision": "28-google_apis_playstore-x86_64"
        }
      }
    },
    "29": {
      "google_apis_playstore": {
        "x86": {
          "archives": [
            {
              "os": "windows",
              "sha1": "1c45e690e9ee6a44f40549e9fb68d3fd52ba4970",
              "size": 1153916727,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86-29_r08-windows.zip"
            },
            {
              "os": "macosx",
              "sha1": "1c45e690e9ee6a44f40549e9fb68d3fd52ba4970",
              "size": 1153916727,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86-29_r08-darwin.zip"
            },
            {
              "os": "linux",
              "sha1": "1c45e690e9ee6a44f40549e9fb68d3fd52ba4970",
              "size": 1153916727,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86-29_r08-linux.zip"
            }
          ],
          "displayName": "Google Play Intel x86 Atom System Image",
          "license": "android-sdk-license",
          "name": "system-image-29-google_apis_playstore-x86",
          "path": "system-images/android-29/google_apis_playstore/x86",
          "revision": "29-google_apis_playstore-x86"
        },
        "x86_64": {
          "archives": [
            {
              "os": "windows",
              "sha1": "94835980b4a6eaeeb41936d7fb1381698e48433a",
              "size": 1322004798,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86_64-29_r08-windows.zip"
            },
            {
              "os": "macosx",
              "sha1": "94835980b4a6eaeeb41936d7fb1381698e48433a",
              "size": 1322004798,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86_64-29_r08-darwin.zip"
            },
            {
              "os": "linux",
              "sha1": "94835980b4a6eaeeb41936d7fb1381698e48433a",
              "size": 1322004798,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86_64-29_r08-linux.zip"
            }
          ],
          "displayName": "Google Play Intel x86 Atom_64 System Image",
          "license": "android-sdk-license",
          "name": "system-image-29-google_apis_playstore-x86_64",
          "path": "system-images/android-29/google_apis_playstore/x86_64",
          "revision": "29-google_apis_playstore-x86_64"
        }
      }
    },
    "30": {
      "google_apis_playstore": {
        "arm64-v8a": {
          "archives": [
            {
              "os": "macosx",
              "sha1": "38dc28908c1784a15fbaf64dd8f8d58279d9ce75",
              "size": 1207055010,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/arm64-v8a-30_r09-darwin.zip"
            },
            {
              "os": "linux",
              "sha1": "38dc28908c1784a15fbaf64dd8f8d58279d9ce75",
              "size": 1207055010,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/arm64-v8a-30_r09-linux.zip"
            }
          ],
          "displayName": "Google Play ARM 64 v8a System Image",
          "license": "android-sdk-arm-dbt-license",
          "name": "system-image-30-google_apis_playstore-arm64-v8a",
          "path": "system-images/android-30/google_apis_playstore/arm64-v8a",
          "revision": "30-google_apis_playstore-arm64-v8a"
        },
        "x86": {
          "archives": [
            {
              "os": "windows",
              "sha1": "13c100b62983d64db53cef3d70fea789d89f3232",
              "size": 1229340756,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86-30_r09-windows.zip"
            },
            {
              "os": "macosx",
              "sha1": "13c100b62983d64db53cef3d70fea789d89f3232",
              "size": 1229340756,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86-30_r09-darwin.zip"
            },
            {
              "os": "linux",
              "sha1": "13c100b62983d64db53cef3d70fea789d89f3232",
              "size": 1229340756,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86-30_r09-linux.zip"
            }
          ],
          "displayName": "Google Play Intel x86 Atom System Image",
          "license": "android-sdk-license",
          "name": "system-image-30-google_apis_playstore-x86",
          "path": "system-images/android-30/google_apis_playstore/x86",
          "revision": "30-google_apis_playstore-x86"
        },
        "x86_64": {
          "archives": [
            {
              "os": "windows",
              "sha1": "ead1babced6bdfaa8e641faeb6ed115ca603c4a9",
              "size": 1404405641,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86_64-30_r10-windows.zip"
            },
            {
              "os": "macosx",
              "sha1": "ead1babced6bdfaa8e641faeb6ed115ca603c4a9",
              "size": 1404405641,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86_64-30_r10-darwin.zip"
            },
            {
              "os": "linux",
              "sha1": "ead1babced6bdfaa8e641faeb6ed115ca603c4a9",
              "size": 1404405641,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86_64-30_r10-linux.zip"
            }
          ],
          "displayName": "Google Play Intel x86 Atom_64 System Image",
          "license": "android-sdk-arm-dbt-license",
          "name": "system-image-30-google_apis_playstore-x86_64",
          "path": "system-images/android-30/google_apis_playstore/x86_64",
          "revision": "30-google_apis_playstore-x86_64"
        }
      }
    },
    "S": {
      "google_apis_playstore": {
        "arm64-v8a": {
          "archives": [
            {
              "os": "macosx",
              "sha1": "528e302e9966e8320d1c2bdc8235762fe4a9e733",
              "size": 1333046412,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/arm64-v8a-S_r03-darwin.zip"
            },
            {
              "os": "linux",
              "sha1": "528e302e9966e8320d1c2bdc8235762fe4a9e733",
              "size": 1333046412,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/arm64-v8a-S_r03-linux.zip"
            }
          ],
          "displayName": "Google Play ARM 64 v8a System Image",
          "license": "android-sdk-arm-dbt-license",
          "name": "system-image-S-google_apis_playstore-arm64-v8a",
          "path": "system-images/android-S/google_apis_playstore/arm64-v8a",
          "revision": "S-google_apis_playstore-arm64-v8a"
        },
        "x86_64": {
          "archives": [
            {
              "os": "windows",
              "sha1": "093e0537cb18b25d8399a1af3ec955d2085f15ff",
              "size": 1384401947,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86_64-S_r03-windows.zip"
            },
            {
              "os": "macosx",
              "sha1": "093e0537cb18b25d8399a1af3ec955d2085f15ff",
              "size": 1384401947,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86_64-S_r03-darwin.zip"
            },
            {
              "os": "linux",
              "sha1": "093e0537cb18b25d8399a1af3ec955d2085f15ff",
              "size": 1384401947,
              "url": "https://dl.google.com/android/repository/sys-img/google_apis_playstore/x86_64-S_r03-linux.zip"
            }
          ],
          "displayName": "Google Play Intel x86 Atom_64 System Image",
          "license": "android-sdk-preview-license",
          "name": "system-image-S-google_apis_playstore-x86_64",
          "path": "system-images/android-S/google_apis_playstore/x86_64",
          "revision": "S-google_apis_playstore-x86_64"
        }
      }
    }
  },
  "licenses": {
    "android-googletv-license": [
      "Terms and Conditions\n\nThis is the Google TV Add-on for the Android Software Development Kit License Agreement.\n\n1. Introduction\n\n1.1 The Google TV Add-on for the Android Software Development Kit (referred to in this License Agreement as the \"Google TV Add-on\" and specifically including the Android system files, packaged APIs, and Google APIs add-ons) is licensed to you subject to the terms of this License Agreement. This License Agreement forms a legally binding contract between you and Google in relation to your use of the Google TV Add-on.\n\n1.2 \"Google\" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.\n\n2. Accepting this License Agreement\n\n2.1 In order to use the Google TV Add-on, you must first agree to this License Agreement. You may not use the Google TV Add-on if you do not accept this License Agreement.\n\n2.2 You can accept this License Agreement by:\n\n(A) clicking to accept or agree to this License Agreement, where this option is made available to you; or\n\n(B) by actually using the Google TV Add-on. In this case, you agree that use of the Google TV Add-on constitutes acceptance of the License Agreement from that point onwards.\n\n2.3 You may not use the Google TV Add-on and may not accept the Licensing Agreement if you are a person barred from receiving the Google TV Add-on under the laws of the United States or other countries including the country in which you are resident or from which you use the Google TV Add-on.\n\n2.4 If you are agreeing to be bound by this License Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to this License Agreement. If you do not have the requisite authority, you may not accept the Licensing Agreement or use the Google TV Add-on on behalf of your employer or other entity.\n\n3. Google TV Add-on License from Google\n\n3.1 Subject to the terms of this License Agreement, Google grants you a limited, worldwide, royalty-free, non- assignable and non-exclusive license to use the Google TV Add-on solely to develop applications to run on the Google TV platform.\n\n3.2 You agree that Google or third parties own all legal right, title and interest in and to the Google TV Add-on, including any Intellectual Property Rights that subsist in the Google TV Add-on. \"Intellectual Property Rights\" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.\n\n3.3 Except to the extent required by applicable third party licenses, you may not copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the Google TV Add-on or any part of the Google TV Add-on. Except to the extent required by applicable third party licenses, you may not load any part of the Google TV Add-on onto a mobile handset, television, or any other hardware device except a personal computer, combine any part of the Google TV Add-on with other software, or distribute any software or device incorporating a part of the Google TV Add-on.\n\n3.4 Use, reproduction and distribution of components of the Google TV Add-on licensed under an open source software license are governed solely by the terms of that open source software license and not this License Agreement.\n\n3.5 You agree that the form and nature of the Google TV Add-on that Google provides may change without prior notice to you and that future versions of the Google TV Add-on may be incompatible with applications developed on previous versions of the Google TV Add-on. You agree that Google may stop (permanently or temporarily) providing the Google TV Add-on (or any features within the Google TV Add-on) to you or to users generally at Google's sole discretion, without prior notice to you.\n\n3.6 Nothing in this License Agreement gives you a right to use any of Google's or it’s licensors’ trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.\n\n3.7 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the Google TV Add-on.\n\n4. Use of the Google TV Add-on by You\n\n4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under this License Agreement in or to any software applications that you develop using the Google TV Add-on, including any intellectual property rights that subsist in those applications.\n\n4.2 You agree to use the Google TV Add-on and write applications only for purposes that are permitted by (a) this License Agreement and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).\n\n4.3 You agree that if you use the Google TV Add-on to develop applications for general public users, you will protect the privacy and legal rights of those users. If the users provide you with user names, passwords, or other login information or personal information, your must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If the user provides your application with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, the user has given you explicit permission to do so.\n\n4.4 You agree that you will not engage in any activity with the Google TV Add-on, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of any third party including, but not limited to, Google, Multichannel Video Program Distributors or any mobile communications carrier.\n\n4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through the Google TV platform and/or applications for the Google TV platform, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.\n\n4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under this License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.\n\n5. Your Developer Credentials\n\n5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.\n\n6. Privacy and Information\n\n6.1 In order to continually innovate and improve the Google TV Add-on, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the Google TV Add-on are being used and how they are being used. Before any of this information is collected, the Google TV Add-on will notify you and seek your consent. If you withhold consent, the information will not be collected.\n\n6.2 The data collected is examined in the aggregate to improve the Google TV Add-on and is maintained in accordance with Google's Privacy Policy.\n\n7. Third Party Applications for the Google TV Platform\n\n7.1 If you use the Google TV Add-on to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.\n\n7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.\n\n7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party. In that case, this License Agreement does not affect your legal relationship with these third parties.\n\n8. Using Google TV APIs\n\n8.1 If you use any Google TV API to retrieve data from Google, you acknowledge that the data (“Google TV API Content”) may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service. Some portions of the Google TV API Content are licensed to Google by third parties, including but not limited to Tribune Media Services\n\n8.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so.\n\n8.3 Except as explicitly permitted in Section 3 (Google TV Add-on License from Google), you must:\n\n(a) not modify nor format the Google TV API Content except to the extent reasonably and technically necessary to optimize the display such Google TV API Content in your application;\n\n(b) not edit the Google TV API Content in a manner that renders the Google TV API Content inaccurate of alters its inherent meaning (provided that displaying excerpts will not violate the foregoing); or\n\n(c) not create any commercial audience measurement tool or service using the Google TV API Content\n\n9. Terminating this License Agreement\n\n9.1 This License Agreement will continue to apply until terminated by either you or Google as set out below.\n\n9.2 If you want to terminate this License Agreement, you may do so by ceasing your use of the Google TV Add-on and any relevant developer credentials.\n\n9.3 Google may at any time, terminate this License Agreement with you if:\n\n(A) you have breached any provision of this License Agreement; or\n\n(B) Google is required to do so by law; or\n\n(C) the partner with whom Google offered certain parts of Google TV Add-on (such as APIs) to you has terminated its relationship with Google or ceased to offer certain parts of the Google TV Add-on to you; or\n\n(D) Google decides to no longer providing the Google TV Add-on or certain parts of the Google TV Add-on to users in the country in which you are resident or from which you use the service, or the provision of the Google TV Add-on or certain Google TV Add-on services to you by Google is, in Google's sole discretion, no longer commercially viable.\n\n9.4 When this License Agreement comes to an end, all of the legal rights, obligations and liabilities that you and Google have benefited from, been subject to (or which have accrued over time whilst this License Agreement has been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall continue to apply to such rights, obligations and liabilities indefinitely.\n\n10. DISCLAIMER OF WARRANTIES\n\n10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE GOOGLE TV ADD-ON IS AT YOUR SOLE RISK AND THAT THE GOOGLE TV ADD-ON IS PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.\n\n10.2 YOUR USE OF THE GOOGLE TV ADD-ON AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE GOOGLE TV ADD-ON IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE.\n\n10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n11. LIMITATION OF LIABILITY\n\n11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.\n\n12. Indemnification\n\n12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or accruing from (a) your use of the Google TV Add-on, (b) any application you develop on the Google TV Add-on that infringes any copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you with this License Agreement.\n\n13. Changes to the License Agreement\n\n13.1 Google may make changes to the License Agreement as it distributes new versions of the Google TV Add-on.\n\n14. General Legal Terms\n\n14.1 This License Agreement constitute the whole legal agreement between you and Google and govern your use of the Google TV Add-on (excluding any services which Google may provide to you under a separate written agreement), and completely replace any prior agreements between you and Google in relation to the Google TV Add-on.\n\n14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in this License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.\n\n14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of this License Agreement is invalid, then that provision will be removed from this License Agreement without affecting the rest of this License Agreement. The remaining provisions of this License Agreement will continue to be valid and enforceable.\n\n14.4 You acknowledge and agree that Google’s API data licensors and each member of the group of companies of which Google is the parent shall be third party beneficiaries to this License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of this License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to this License Agreement.\n\n14.5 EXPORT RESTRICTIONS. THE GOOGLE TV ADD-ON IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE GOOGLE TV ADD-ON. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.\n\n14.6 The rights granted in this License Agreement may not be assigned or transferred by either you or Google without the prior written approval of the other party. Neither you nor Google shall be permitted to delegate their responsibilities or obligations under this License Agreement without the prior written approval of the other party.\n\n14.7 This License Agreement, and your relationship with Google under this License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from this License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.\n\n\nAugust 15, 2011"
    ],
    "android-sdk-arm-dbt-license": [
      "Terms and Conditions\n\nThis is the Android Software Development Kit License Agreement\n\n1. Introduction\n\n1.1 The Android Software Development Kit (referred to in the License Agreement as the \"SDK\" and specifically including the Android system files, packaged APIs, and Google APIs add-ons) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the SDK.\n\n1.2 \"Android\" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.\n\n1.3 A \"compatible implementation\" means any Android device that (i) complies with the Android Compatibility Definition document, which can be found at the Android compatibility website (http://source.android.com/compatibility) and which may be updated from time to time; and (ii) successfully passes the Android Compatibility Test Suite (CTS).\n\n1.4 \"Google\" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.\n\n\n2. Accepting the License Agreement\n\n2.1 In order to use the SDK, you must first agree to the License Agreement. You may not use the SDK if you do not accept the License Agreement.\n\n2.2 By clicking to accept, you hereby agree to the terms of the License Agreement.\n\n2.3 You may not use the SDK and may not accept the License Agreement if you are a person barred from receiving the SDK under the laws of the United States or other countries, including the country in which you are resident or from which you use the SDK.\n\n2.4 If you are agreeing to be bound by the License Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to the License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the SDK on behalf of your employer or other entity.\n\n\n3. SDK License from Google\n\n3.1 Subject to the terms of the License Agreement, Google grants you a limited, worldwide, royalty-free, non-assignable, non-exclusive, and non-sublicensable license to use the SDK solely to develop applications for compatible implementations of Android.\n\n3.2 You may not use this SDK to develop applications for other platforms (including non-compatible implementations of Android) or to develop another SDK. You are of course free to develop applications for other platforms, including non-compatible implementations of Android, provided that this SDK is not used for that purpose.\n\n3.3 You agree that Google or third parties own all legal right, title and interest in and to the SDK, including any Intellectual Property Rights that subsist in the SDK. \"Intellectual Property Rights\" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.\n\n3.4 You may not use the SDK for any purpose not expressly permitted by the License Agreement. Except to the extent required by applicable third party licenses, you may not copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the SDK or any part of the SDK.\n\n3.5 Use, reproduction and distribution of components of the SDK licensed under an open source software license are governed solely by the terms of that open source software license and not the License Agreement.\n\n3.6 You agree that the form and nature of the SDK that Google provides may change without prior notice to you and that future versions of the SDK may be incompatible with applications developed on previous versions of the SDK. You agree that Google may stop (permanently or temporarily) providing the SDK (or any features within the SDK) to you or to users generally at Google's sole discretion, without prior notice to you.\n\n3.7 Nothing in the License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.\n\n3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the SDK.\n\n\n4. Use of the SDK by You\n\n4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under the License Agreement in or to any software applications that you develop using the SDK, including any intellectual property rights that subsist in those applications.\n\n4.2 You agree to use the SDK and write applications only for purposes that are permitted by (a) the License Agreement and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).\n\n4.3 You agree that if you use the SDK to develop applications for general public users, you will protect the privacy and legal rights of those users. If the users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If the user provides your application with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, the user has given you permission to do so.\n\n4.4 You agree that you will not engage in any activity with the SDK, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of any third party including, but not limited to, Google or any mobile communications carrier.\n\n4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.\n\n4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.\n\n4.7 This software enables the execution of intellectual property owned by Arm Limited. You agree that your use of the software, that allows execution of ARM Instruction Set Architecture (“ISA”) compliant executables for application development and debug only on x86 desktop, laptop, customer on-premise servers, and customer-procured cloud-based environments.\n\n5. Your Developer Credentials\n\n5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.\n\n6. Privacy and Information\n\n6.1 In order to continually innovate and improve the SDK, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the SDK are being used and how they are being used. Before any of this information is collected, the SDK will notify you and seek your consent. If you withhold consent, the information will not be collected.\n\n6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in accordance with Google's Privacy Policy.\n\n\n7. Third Party Applications\n\n7.1 If you use the SDK to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.\n\n7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.\n\n7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party. In that case, the License Agreement does not affect your legal relationship with these third parties.\n\n\n8. Using Android APIs\n\n8.1 Google Data APIs\n\n8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.\n\n8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so. If you use the Android Recognition Service API, documented at the following URL: https://developer.android.com/reference/android/speech/RecognitionService, as updated from time to time, you acknowledge that the use of the API is subject to the Data Processing Addendum for Products where Google is a Data Processor, which is located at the following URL: https://privacy.google.com/businesses/gdprprocessorterms/, as updated from time to time. By clicking to accept, you hereby agree to the terms of the Data Processing Addendum for Products where Google is a Data Processor.\n\n\n9. Terminating the License Agreement\n\n9.1 The License Agreement will continue to apply until terminated by either you or Google as set out below.\n\n9.2 If you want to terminate the License Agreement, you may do so by ceasing your use of the SDK and any relevant developer credentials.\n\n9.3 Google may at any time, terminate the License Agreement with you if: (A) you have breached any provision of the License Agreement; or (B) Google is required to do so by law; or (C) the partner with whom Google offered certain parts of SDK (such as APIs) to you has terminated its relationship with Google or ceased to offer certain parts of the SDK to you; or (D) Google decides to no longer provide the SDK or certain parts of the SDK to users in the country in which you are resident or from which you use the service, or the provision of the SDK or certain SDK services to you by Google is, in Google's sole discretion, no longer commercially viable.\n\n9.4 When the License Agreement comes to an end, all of the legal rights, obligations and liabilities that you and Google have benefited from, been subject to (or which have accrued over time whilst the License Agreement has been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall continue to apply to such rights, obligations and liabilities indefinitely.\n\n\n10. DISCLAIMER OF WARRANTIES\n\n10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE RISK AND THAT THE SDK IS PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.\n\n10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE.\n\n10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n\n11. LIMITATION OF LIABILITY\n\n11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.\n\n\n12. Indemnification\n\n12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or accruing from (a) your use of the SDK, (b) any application you develop on the SDK that infringes any copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you with the License Agreement.\n\n\n13. Changes to the License Agreement\n\n13.1 Google may make changes to the License Agreement as it distributes new versions of the SDK. When these changes are made, Google will make a new version of the License Agreement available on the website where the SDK is made available.\n\n\n14. General Legal Terms\n\n14.1 The License Agreement constitutes the whole legal agreement between you and Google and governs your use of the SDK (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the SDK.\n\n14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.\n\n14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of the License Agreement is invalid, then that provision will be removed from the License Agreement without affecting the rest of the License Agreement. The remaining provisions of the License Agreement will continue to be valid and enforceable.\n\n14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the License Agreement.\n\n14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.\n\n14.6 The rights granted in the License Agreement may not be assigned or transferred by either you or Google without the prior written approval of the other party. Neither you nor Google shall be permitted to delegate their responsibilities or obligations under the License Agreement without the prior written approval of the other party.\n\n14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.\n\n\nJanuary 16, 2019"
    ],
    "android-sdk-license": [
      "Terms and Conditions\n\nThis is the Android Software Development Kit License Agreement\n\n1. Introduction\n\n1.1 The Android Software Development Kit (referred to in the License Agreement as the \"SDK\" and specifically including the Android system files, packaged APIs, and Google APIs add-ons) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the SDK.\n\n1.2 \"Android\" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.\n\n1.3 A \"compatible implementation\" means any Android device that (i) complies with the Android Compatibility Definition document, which can be found at the Android compatibility website (http://source.android.com/compatibility) and which may be updated from time to time; and (ii) successfully passes the Android Compatibility Test Suite (CTS).\n\n1.4 \"Google\" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.\n\n\n2. Accepting the License Agreement\n\n2.1 In order to use the SDK, you must first agree to the License Agreement. You may not use the SDK if you do not accept the License Agreement.\n\n2.2 By clicking to accept, you hereby agree to the terms of the License Agreement.\n\n2.3 You may not use the SDK and may not accept the License Agreement if you are a person barred from receiving the SDK under the laws of the United States or other countries, including the country in which you are resident or from which you use the SDK.\n\n2.4 If you are agreeing to be bound by the License Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to the License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the SDK on behalf of your employer or other entity.\n\n\n3. SDK License from Google\n\n3.1 Subject to the terms of the License Agreement, Google grants you a limited, worldwide, royalty-free, non-assignable, non-exclusive, and non-sublicensable license to use the SDK solely to develop applications for compatible implementations of Android.\n\n3.2 You may not use this SDK to develop applications for other platforms (including non-compatible implementations of Android) or to develop another SDK. You are of course free to develop applications for other platforms, including non-compatible implementations of Android, provided that this SDK is not used for that purpose.\n\n3.3 You agree that Google or third parties own all legal right, title and interest in and to the SDK, including any Intellectual Property Rights that subsist in the SDK. \"Intellectual Property Rights\" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.\n\n3.4 You may not use the SDK for any purpose not expressly permitted by the License Agreement. Except to the extent required by applicable third party licenses, you may not copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the SDK or any part of the SDK.\n\n3.5 Use, reproduction and distribution of components of the SDK licensed under an open source software license are governed solely by the terms of that open source software license and not the License Agreement.\n\n3.6 You agree that the form and nature of the SDK that Google provides may change without prior notice to you and that future versions of the SDK may be incompatible with applications developed on previous versions of the SDK. You agree that Google may stop (permanently or temporarily) providing the SDK (or any features within the SDK) to you or to users generally at Google's sole discretion, without prior notice to you.\n\n3.7 Nothing in the License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.\n\n3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the SDK.\n\n\n4. Use of the SDK by You\n\n4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under the License Agreement in or to any software applications that you develop using the SDK, including any intellectual property rights that subsist in those applications.\n\n4.2 You agree to use the SDK and write applications only for purposes that are permitted by (a) the License Agreement and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).\n\n4.3 You agree that if you use the SDK to develop applications for general public users, you will protect the privacy and legal rights of those users. If the users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If the user provides your application with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, the user has given you permission to do so.\n\n4.4 You agree that you will not engage in any activity with the SDK, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of any third party including, but not limited to, Google or any mobile communications carrier.\n\n4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.\n\n4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.\n\n5. Your Developer Credentials\n\n5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.\n\n6. Privacy and Information\n\n6.1 In order to continually innovate and improve the SDK, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the SDK are being used and how they are being used. Before any of this information is collected, the SDK will notify you and seek your consent. If you withhold consent, the information will not be collected.\n\n6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in accordance with Google's Privacy Policy.\n\n\n7. Third Party Applications\n\n7.1 If you use the SDK to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.\n\n7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.\n\n7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party. In that case, the License Agreement does not affect your legal relationship with these third parties.\n\n\n8. Using Android APIs\n\n8.1 Google Data APIs\n\n8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.\n\n8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so. If you use the Android Recognition Service API, documented at the following URL: https://developer.android.com/reference/android/speech/RecognitionService, as updated from time to time, you acknowledge that the use of the API is subject to the Data Processing Addendum for Products where Google is a Data Processor, which is located at the following URL: https://privacy.google.com/businesses/gdprprocessorterms/, as updated from time to time. By clicking to accept, you hereby agree to the terms of the Data Processing Addendum for Products where Google is a Data Processor.\n\n\n9. Terminating the License Agreement\n\n9.1 The License Agreement will continue to apply until terminated by either you or Google as set out below.\n\n9.2 If you want to terminate the License Agreement, you may do so by ceasing your use of the SDK and any relevant developer credentials.\n\n9.3 Google may at any time, terminate the License Agreement with you if: (A) you have breached any provision of the License Agreement; or (B) Google is required to do so by law; or (C) the partner with whom Google offered certain parts of SDK (such as APIs) to you has terminated its relationship with Google or ceased to offer certain parts of the SDK to you; or (D) Google decides to no longer provide the SDK or certain parts of the SDK to users in the country in which you are resident or from which you use the service, or the provision of the SDK or certain SDK services to you by Google is, in Google's sole discretion, no longer commercially viable.\n\n9.4 When the License Agreement comes to an end, all of the legal rights, obligations and liabilities that you and Google have benefited from, been subject to (or which have accrued over time whilst the License Agreement has been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall continue to apply to such rights, obligations and liabilities indefinitely.\n\n\n10. DISCLAIMER OF WARRANTIES\n\n10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE RISK AND THAT THE SDK IS PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.\n\n10.2 YOUR USE OF THE SDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE SDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE.\n\n10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n\n11. LIMITATION OF LIABILITY\n\n11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.\n\n\n12. Indemnification\n\n12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or accruing from (a) your use of the SDK, (b) any application you develop on the SDK that infringes any copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you with the License Agreement.\n\n\n13. Changes to the License Agreement\n\n13.1 Google may make changes to the License Agreement as it distributes new versions of the SDK. When these changes are made, Google will make a new version of the License Agreement available on the website where the SDK is made available.\n\n\n14. General Legal Terms\n\n14.1 The License Agreement constitutes the whole legal agreement between you and Google and governs your use of the SDK (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the SDK.\n\n14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.\n\n14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of the License Agreement is invalid, then that provision will be removed from the License Agreement without affecting the rest of the License Agreement. The remaining provisions of the License Agreement will continue to be valid and enforceable.\n\n14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the License Agreement.\n\n14.5 EXPORT RESTRICTIONS. THE SDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE SDK. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.\n\n14.6 The rights granted in the License Agreement may not be assigned or transferred by either you or Google without the prior written approval of the other party. Neither you nor Google shall be permitted to delegate their responsibilities or obligations under the License Agreement without the prior written approval of the other party.\n\n14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.\n\n\nJanuary 16, 2019"
    ],
    "android-sdk-preview-license": [
      "To get started with the Android SDK Preview, you must agree to the following terms and conditions. As described below, please note that this is a preview version of the Android SDK, subject to change, that you use at your own risk. The Android SDK Preview is not a stable release, and may contain errors and defects that can result in serious damage to your computer systems, devices and data.\n\nThis is the Android SDK Preview License Agreement (the \"License Agreement\").\n\n1. Introduction\n\n1.1 The Android SDK Preview (referred to in the License Agreement as the “Preview” and specifically including the Android system files, packaged APIs, and Preview library files, if and when they are made available) is licensed to you subject to the terms of the License Agreement. The License Agreement forms a legally binding contract between you and Google in relation to your use of the Preview.\n\n1.2 \"Android\" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.\n\n1.3 \"Google\" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.\n\n2. Accepting the License Agreement\n\n2.1 In order to use the Preview, you must first agree to the License Agreement. You may not use the Preview if you do not accept the License Agreement.\n\n2.2 By clicking to accept and/or using the Preview, you hereby agree to the terms of the License Agreement.\n\n2.3 You may not use the Preview and may not accept the License Agreement if you are a person barred from receiving the Preview under the laws of the United States or other countries including the country in which you are resident or from which you use the Preview.\n\n2.4 If you will use the Preview internally within your company or organization you agree to be bound by the License Agreement on behalf of your employer or other entity, and you represent and warrant that you have full legal authority to bind your employer or such entity to the License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the Preview on behalf of your employer or other entity.\n\n3. Preview License from Google\n\n3.1 Subject to the terms of the License Agreement, Google grants you a royalty-free, non-assignable, non-exclusive, non-sublicensable, limited, revocable license to use the Preview, personally or internally within your company or organization, solely to develop applications to run on the Android platform.\n\n3.2 You agree that Google or third parties owns all legal right, title and interest in and to the Preview, including any Intellectual Property Rights that subsist in the Preview. \"Intellectual Property Rights\" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.\n\n3.3 You may not use the Preview for any purpose not expressly permitted by the License Agreement. Except to the extent required by applicable third party licenses, you may not: (a) copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the Preview or any part of the Preview; or (b) load any part of the Preview onto a mobile handset or any other hardware device except a personal computer, combine any part of the Preview with other software, or distribute any software or device incorporating a part of the Preview.\n\n3.4 You agree that you will not take any actions that may cause or result in the fragmentation of Android, including but not limited to distributing, participating in the creation of, or promoting in any way a software development kit derived from the Preview.\n\n3.5 Use, reproduction and distribution of components of the Preview licensed under an open source software license are governed solely by the terms of that open source software license and not the License Agreement. You agree to remain a licensee in good standing in regard to such open source software licenses under all the rights granted and to refrain from any actions that may terminate, suspend, or breach such rights.\n\n3.6 You agree that the form and nature of the Preview that Google provides may change without prior notice to you and that future versions of the Preview may be incompatible with applications developed on previous versions of the Preview. You agree that Google may stop (permanently or temporarily) providing the Preview (or any features within the Preview) to you or to users generally at Google's sole discretion, without prior notice to you.\n\n3.7 Nothing in the License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.\n\n3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the Preview.\n\n4. Use of the Preview by You\n\n4.1 Google agrees that nothing in the License Agreement gives Google any right, title or interest from you (or your licensors) under the License Agreement in or to any software applications that you develop using the Preview, including any intellectual property rights that subsist in those applications.\n\n4.2 You agree to use the Preview and write applications only for purposes that are permitted by (a) the License Agreement, and (b) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).\n\n4.3 You agree that if you use the Preview to develop applications, you will protect the privacy and legal rights of users. If users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If users provide you with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, each user has given you permission to do so.\n\n4.4 You agree that you will not engage in any activity with the Preview, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of Google or any third party.\n\n4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Android and/or applications for Android, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.\n\n4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under the License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.\n\n4.7 The Preview is in development, and your testing and feedback are an important part of the development process. By using the Preview, you acknowledge that implementation of some features are still under development and that you should not rely on the Preview having the full functionality of a stable release. You agree not to publicly distribute or ship any application using this Preview as this Preview will no longer be supported after the official Android SDK is released.\n\n5. Your Developer Credentials\n\n5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.\n\n6. Privacy and Information\n\n6.1 In order to continually innovate and improve the Preview, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the Preview are being used and how they are being used. Before any of this information is collected, the Preview will notify you and seek your consent. If you withhold consent, the information will not be collected.\n\n6.2 The data collected is examined in the aggregate to improve the Preview and is maintained in accordance with Google's Privacy Policy located at http://www.google.com/policies/privacy/.\n\n7. Third Party Applications\n\n7.1 If you use the Preview to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.\n\n7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.\n\n7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party.\n\n8. Using Google APIs\n\n8.1 Google APIs\n\n8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.\n\n8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so.\n\n9. Terminating the License Agreement\n\n9.1 the License Agreement will continue to apply until terminated by either you or Google as set out below.\n\n9.2 If you want to terminate the License Agreement, you may do so by ceasing your use of the Preview and any relevant developer credentials.\n\n9.3 Google may at any time, terminate the License Agreement, with or without cause, upon notice to you.\n\n9.4 The License Agreement will automatically terminate without notice or other action upon the earlier of: (A) when Google ceases to provide the Preview or certain parts of the Preview to users in the country in which you are resident or from which you use the service; and (B) Google issues a final release version of the Android SDK.\n\n9.5 When the License Agreement is terminated, the license granted to you in the License Agreement will terminate, you will immediately cease all use of the Preview, and the provisions of paragraphs 10, 11, 12 and 14 shall survive indefinitely.\n\n10. DISCLAIMERS\n\n10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE PREVIEW IS AT YOUR SOLE RISK AND THAT THE PREVIEW IS PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.\n\n10.2 YOUR USE OF THE PREVIEW AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE PREVIEW IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE. WITHOUT LIMITING THE FOREGOING, YOU UNDERSTAND THAT THE PREVIEW IS NOT A STABLE RELEASE AND MAY CONTAIN ERRORS, DEFECTS AND SECURITY VULNERABILITIES THAT CAN RESULT IN SIGNIFICANT DAMAGE, INCLUDING THE COMPLETE, IRRECOVERABLE LOSS OF USE OF YOUR COMPUTER SYSTEM OR OTHER DEVICE.\n\n10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n11. LIMITATION OF LIABILITY\n\n11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.\n\n12. Indemnification\n\n12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys’ fees) arising out of or accruing from (a) your use of the Preview, (b) any application you develop on the Preview that infringes any Intellectual Property Rights of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you of the License Agreement.\n\n13. Changes to the License Agreement\n\n13.1 Google may make changes to the License Agreement as it distributes new versions of the Preview. When these changes are made, Google will make a new version of the License Agreement available on the website where the Preview is made available.\n\n14. General Legal Terms\n\n14.1 the License Agreement constitutes the whole legal agreement between you and Google and governs your use of the Preview (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the Preview.\n\n14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in the License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.\n\n14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of the License Agreement is invalid, then that provision will be removed from the License Agreement without affecting the rest of the License Agreement. The remaining provisions of the License Agreement will continue to be valid and enforceable.\n\n14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to the License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of the License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to the License Agreement.\n\n14.5 EXPORT RESTRICTIONS. THE PREVIEW IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE PREVIEW. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.\n\n14.6 The License Agreement may not be assigned or transferred by you without the prior written approval of Google, and any attempted assignment without such approval will be void. You shall not delegate your responsibilities or obligations under the License Agreement without the prior written approval of Google.\n\n14.7 The License Agreement, and your relationship with Google under the License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from the License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.\n\nJune 2014."
    ],
    "google-gdk-license": [
      "This is a Developer Preview of the GDK that is subject to change.\n\nTerms and Conditions\n\nThis is the Glass Development Kit License Agreement.\n\n1. Introduction\n\n1.1 The Glass Development Kit (referred to in this License Agreement as the \"GDK\" and specifically including the Android system files, packaged APIs, and GDK library files, if and when they are made available) is licensed to you subject to the terms of this License Agreement. This License Agreement forms a legally binding contract between you and Google in relation to your use of the GDK.\n\n1.2 \"Glass\" means Glass devices and the Glass software stack for use on Glass devices.\n\n\n1.3 \"Android\" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time.\n\n1.4 \"Google\" means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.\n\n2. Accepting this License Agreement\n\n2.1 In order to use the GDK, you must first agree to this License Agreement. You may not use the GDK if you do not accept this License Agreement.\n\n2.2 By clicking to accept, you hereby agree to the terms of this License Agreement.\n\n2.3 You may not use the GDK and may not accept the License Agreement if you are a person barred from receiving the GDK under the laws of the United States or other countries including the country in which you are resident or from which you use the GDK.\n\n2.4 If you are agreeing to be bound by this License Agreement on behalf of your employer or other entity, you represent and warrant that you have full legal authority to bind your employer or such entity to this License Agreement. If you do not have the requisite authority, you may not accept the License Agreement or use the GDK on behalf of your employer or other entity.\n\n3. GDK License from Google\n\n3.1 Subject to the terms of this License Agreement, Google grants you a limited, worldwide, royalty-free, non-assignable and non-exclusive license to use the GDK solely to develop applications to run on the Glass platform for Glass devices.\n\n3.2 You agree that Google or third parties own all legal right, title and interest in and to the GDK, including any Intellectual Property Rights that subsist in the GDK. \"Intellectual Property Rights\" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you.\n\n3.3 You may not use the GDK for any purpose not expressly permitted by this License Agreement. Except to the extent required by applicable third party licenses, you may not: (a) copy (except for backup purposes), modify, adapt, redistribute, decompile, reverse engineer, disassemble, or create derivative works of the GDK or any part of the GDK; or (b) load any part of the GDK onto a mobile handset or wearable computing device or any other hardware device except a Glass device personal computer, combine any part of the GDK with other software, or distribute any software or device incorporating a part of the GDK.\n\n3.4 You agree that you will not take any actions that may cause or result in the fragmentation of Glass, including but not limited to distributing, participating in the creation of, or promoting in any way a software development kit derived from the GDK.\n\n3.5 Use, reproduction and distribution of components of the GDK licensed under an open source software license are governed solely by the terms of that open source software license and not this License Agreement.\n\n3.6 You agree that the form and nature of the GDK that Google provides may change without prior notice to you and that future versions of the GDK may be incompatible with applications developed on previous versions of the GDK. You agree that Google may stop (permanently or temporarily) providing the GDK (or any features within the GDK) to you or to users generally at Google's sole discretion, without prior notice to you.\n\n3.7 Nothing in this License Agreement gives you a right to use any of Google's trade names, trademarks, service marks, logos, domain names, or other distinctive brand features.\n\n3.8 You agree that you will not remove, obscure, or alter any proprietary rights notices (including copyright and trademark notices) that may be affixed to or contained within the GDK.\n\n\n3.9 Your use of any Android system files, packaged APIs, or other components of the GDK which are part of the Android Software Development Kit is subject to the terms of the Android Software Development Kit License Agreement located at http://developer.android.com/sdk/terms.html. These terms are hereby incorporated by reference into this License Agreement.\n\n4. Use of the GDK by You\n\n4.1 Google agrees that it obtains no right, title or interest from you (or your licensors) under this License Agreement in or to any software applications that you develop using the GDK, including any intellectual property rights that subsist in those applications.\n\n4.2 You agree to use the GDK and write applications only for purposes that are permitted by (a) this License Agreement, (b) the Glass Platform Developer Policies (located at https://developers.google.com/glass/policies, and hereby incorporated into this License Agreement by reference), and (c) any applicable law, regulation or generally accepted practices or guidelines in the relevant jurisdictions (including any laws regarding the export of data or software to and from the United States or other relevant countries).\n\n4.3 You agree that if you use the GDK to develop applications for general public users, you will protect the privacy and legal rights of those users. If the users provide you with user names, passwords, or other login information or personal information, you must make the users aware that the information will be available to your application, and you must provide legally adequate privacy notice and protection for those users. If your application stores personal or sensitive information provided by users, it must do so securely. If the user provides your application with Google Account information, your application may only use that information to access the user's Google Account when, and for the limited purposes for which, the user has given you permission to do so.\n\n4.4 You agree that you will not engage in any activity with the GDK, including the development or distribution of an application, that interferes with, disrupts, damages, or accesses in an unauthorized manner the servers, networks, or other properties or services of any third party including, but not limited to, Google.\n\n4.5 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any data, content, or resources that you create, transmit or display through Glass and/or applications for Glass, and for the consequences of your actions (including any loss or damage which Google may suffer) by doing so.\n\n4.6 You agree that you are solely responsible for (and that Google has no responsibility to you or to any third party for) any breach of your obligations under this License Agreement, any applicable third party contract or Terms of Service, or any applicable law or regulation, and for the consequences (including any loss or damage which Google or any third party may suffer) of any such breach.\n\n\n4.7 The GDK is in development, and your testing and feedback are an important part of the development process. By using the GDK, you acknowledge that implementation of some features are still under development and that you should not rely on the GDK, Glass devices, Glass system software, Google Mirror API, or Glass services having the full functionality of a stable release.\n\n5. Your Developer Credentials\n\n5.1 You agree that you are responsible for maintaining the confidentiality of any developer credentials that may be issued to you by Google or which you may choose yourself and that you will be solely responsible for all applications that are developed under your developer credentials.\n\n6. Privacy and Information\n\n\n6.1 In order to continually innovate and improve the GDK, Google may collect certain usage statistics from the software including but not limited to a unique identifier, associated IP address, version number of the software, and information on which tools and/or services in the GDK are being used and how they are being used. Before any of this information is collected, the GDK will notify you and seek your consent. If you withhold consent, the information will not be collected.\n\n6.2 The data collected is examined in the aggregate to improve the GDK and is maintained in accordance with Google's Privacy Policy.\n\n7. Third Party Applications\n\n7.1 If you use the GDK to run applications developed by a third party or that access data, content or resources provided by a third party, you agree that Google is not responsible for those applications, data, content, or resources. You understand that all data, content or resources which you may access through such third party applications are the sole responsibility of the person from which they originated and that Google is not liable for any loss or damage that you may experience as a result of the use or access of any of those third party applications, data, content, or resources.\n\n7.2 You should be aware the data, content, and resources presented to you through such a third party application may be protected by intellectual property rights which are owned by the providers (or by other persons or companies on their behalf). You may not modify, rent, lease, loan, sell, distribute or create derivative works based on these data, content, or resources (either in whole or in part) unless you have been specifically given permission to do so by the relevant owners.\n\n7.3 You acknowledge that your use of such third party applications, data, content, or resources may be subject to separate terms between you and the relevant third party. In that case, this License Agreement does not affect your legal relationship with these third parties.\n\n8. Using Google APIs\n\n8.1 Google APIs\n\n8.1.1 If you use any API to retrieve data from Google, you acknowledge that the data may be protected by intellectual property rights which are owned by Google or those parties that provide the data (or by other persons or companies on their behalf). Your use of any such API may be subject to additional Terms of Service. You may not modify, rent, lease, loan, sell, distribute or create derivative works based on this data (either in whole or in part) unless allowed by the relevant Terms of Service.\n\n8.1.2 If you use any API to retrieve a user's data from Google, you acknowledge and agree that you shall retrieve data only with the user's explicit consent and only when, and for the limited purposes for which, the user has given you permission to do so.\n\n9. Terminating this License Agreement\n\n9.1 This License Agreement will continue to apply until terminated by either you or Google as set out below.\n\n9.2 If you want to terminate this License Agreement, you may do so by ceasing your use of the GDK and any relevant developer credentials.\n\n9.3 Google may at any time, terminate this License Agreement with you if: (A) you have breached any provision of this License Agreement; or (B) Google is required to do so by law; or (C) the partner with whom Google offered certain parts of GDK (such as APIs) to you has terminated its relationship with Google or ceased to offer certain parts of the GDK to you; or (D) Google decides to no longer provide the GDK or certain parts of the GDK to users in the country in which you are resident or from which you use the service, or the provision of the GDK or certain GDK services to you by Google is, in Google's sole discretion, no longer commercially viable.\n\n9.4 When this License Agreement comes to an end, all of the legal rights, obligations and liabilities that you and Google have benefited from, been subject to (or which have accrued over time whilst this License Agreement has been in force) or which are expressed to continue indefinitely, shall be unaffected by this cessation, and the provisions of paragraph 14.7 shall continue to apply to such rights, obligations and liabilities indefinitely.\n\n10. DISCLAIMER OF WARRANTIES\n\n10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE GDK IS AT YOUR SOLE RISK AND THAT THE GDK IS PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.\n\n10.2 YOUR USE OF THE GDK AND ANY MATERIAL DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE GDK IS AT YOUR OWN DISCRETION AND RISK AND YOU ARE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR COMPUTER SYSTEM OR OTHER DEVICE OR LOSS OF DATA THAT RESULTS FROM SUCH USE.\n\n10.3 GOOGLE FURTHER EXPRESSLY DISCLAIMS ALL WARRANTIES AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\n11. LIMITATION OF LIABILITY\n\n11.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT GOOGLE, ITS SUBSIDIARIES AND AFFILIATES, AND ITS LICENSORS SHALL NOT BE LIABLE TO YOU UNDER ANY THEORY OF LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL OR EXEMPLARY DAMAGES THAT MAY BE INCURRED BY YOU, INCLUDING ANY LOSS OF DATA, WHETHER OR NOT GOOGLE OR ITS REPRESENTATIVES HAVE BEEN ADVISED OF OR SHOULD HAVE BEEN AWARE OF THE POSSIBILITY OF ANY SUCH LOSSES ARISING.\n\n12. Indemnification\n\n12.1 To the maximum extent permitted by law, you agree to defend, indemnify and hold harmless Google, its affiliates and their respective directors, officers, employees and agents from and against any and all claims, actions, suits or proceedings, as well as any and all losses, liabilities, damages, costs and expenses (including reasonable attorneys fees) arising out of or accruing from (a) your use of the GDK, (b) any application you develop on the GDK that infringes any copyright, trademark, trade secret, trade dress, patent or other intellectual property right of any person or defames any person or violates their rights of publicity or privacy, and (c) any non-compliance by you with this License Agreement.\n\n13. Changes to the License Agreement\n\n13.1 Google may make changes to the License Agreement as it distributes new versions of the GDK. When these changes are made, Google will make a new version of the License Agreement available on the website where the GDK is made available.\n\n14. General Legal Terms\n\n14.1 This License Agreement constitutes the whole legal agreement between you and Google and governs your use of the GDK (excluding any services which Google may provide to you under a separate written agreement), and completely replaces any prior agreements between you and Google in relation to the GDK.\n\n14.2 You agree that if Google does not exercise or enforce any legal right or remedy which is contained in this License Agreement (or which Google has the benefit of under any applicable law), this will not be taken to be a formal waiver of Google's rights and that those rights or remedies will still be available to Google.\n\n14.3 If any court of law, having the jurisdiction to decide on this matter, rules that any provision of this License Agreement is invalid, then that provision will be removed from this License Agreement without affecting the rest of this License Agreement. The remaining provisions of this License Agreement will continue to be valid and enforceable.\n\n14.4 You acknowledge and agree that each member of the group of companies of which Google is the parent shall be third party beneficiaries to this License Agreement and that such other companies shall be entitled to directly enforce, and rely upon, any provision of this License Agreement that confers a benefit on (or rights in favor of) them. Other than this, no other person or company shall be third party beneficiaries to this License Agreement.\n\n14.5 EXPORT RESTRICTIONS. THE GDK IS SUBJECT TO UNITED STATES EXPORT LAWS AND REGULATIONS. YOU MUST COMPLY WITH ALL DOMESTIC AND INTERNATIONAL EXPORT LAWS AND REGULATIONS THAT APPLY TO THE GDK. THESE LAWS INCLUDE RESTRICTIONS ON DESTINATIONS, END USERS AND END USE.\n\n14.6 The rights granted in this License Agreement may not be assigned or transferred by either you or Google without the prior written approval of the other party. Neither you nor Google shall be permitted to delegate their responsibilities or obligations under this License Agreement without the prior written approval of the other party.\n\n14.7 This License Agreement, and your relationship with Google under this License Agreement, shall be governed by the laws of the State of California without regard to its conflict of laws provisions. You and Google agree to submit to the exclusive jurisdiction of the courts located within the county of Santa Clara, California to resolve any legal matter arising from this License Agreement. Notwithstanding this, you agree that Google shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal relief) in any jurisdiction.\n\nNovember 19, 2013"
    ],
    "intel-android-extra-license": [
      "Intel (R) Hardware Accelerated Execution Manager End-User License Agreement\n\nCopyright (c) 2012 Intel Corporation. All rights reserved.\n\nRedistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met:\n\n1.Redistributions must reproduce the above copyright notice and the following disclaimer in the documentation and/or other materials provided with the distribution.\n\n2.Neither the name of Intel Corporation nor the names of its suppliers may be used to endorse or promote products derived from this software without specific prior written permission.\n\n3.No reverse engineering, de-compilation, or disassembly of this software is permitted. Limited patent license. Intel Corporation grants a world-wide, royalty-free, non-exclusive license under patents it now or hereafter owns or controls to make, have made, use, import, offer to sell and sell (\"Utilize\") this software, but solely to the extent that any such patent is necessary to Utilize the software alone. The patent license shall not apply to any combinations which include this software. No hardware per se is licensed hereunder.\n\nDISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
    ],
    "intel-android-sysimage-license": [
      "Intel Corporation Internal Evaluation License Agreement for x86 Android* System Images for Android Software Development Kit (SDK) This Internal Evaluation License Agreement (this \"Agreement\") is entered into by and between Intel and you (as an individual developer or a legal entity -- identified below as Recipient). Intel shall provide the Evaluation Software to Recipient as described in accordance with the Internal Evaluation License Terms and Conditions.\n\nDefinitions. These terms shall have the following meanings:\n\n\"Intel\" or \"INTEL\" Intel Corporation With an Address of: 2200 Mission College Blvd. Santa Clara, CA 95052 Office of the General Counsel Mail Stop: RNB-4-51 Attn: Software and Services Group Legal\n\n\"Evaluation Software\" The x86 Android* emulator system images for Android Software Development Kit (SDK), as provided by Intel.\n\nINTERNAL EVALUATION LICENSE TERMS AND CONDITIONS\n\n1. DEFINITIONS.\n\n1.1 Additional Defined Terms. \"Agreement\", \"Evaluation Software\", \"Intel\", \"Non-disclosure Agreement\", \"Recipient\", and \"Effective Date\" shall have the meanings ascribed to them on the signature page(s) of this Agreement.\n\n1.2 Evaluation Materials means, collectively, the Evaluation Software (in source and/or object code form) and documentation (including, without limitation, any design documents, specifications and other related materials) related to the Evaluation Software.\n\n1.3 \"Open Source Software\" means any software that requires as a condition of use, modification and/or distribution of such software that such software or other software incorporated into, derived from or distributed with such software (a) be disclosed or distributed in source code form; or (b) be licensed by the user to third parties for the purpose of making and/or distributing derivative works; or (c) be redistributable at no charge. Open Source Software includes, without limitation, software licensed or distributed under any of the following licenses or distribution models, or licenses or distribution models substantially similar to any of the following: (a) GNU’s General Public License (GPL) or Lesser/Library GPL (LGPL), (b) the Artistic License (e.g., PERL), (c) the Mozilla Public License, (d) the Netscape Public License, (e) the Sun Community Source License (SCSL), (f) the Sun Industry Source License (SISL), (g) the Apache Software license and (h) the Common Public License (CPL).\n\n1.4 \"Pre-Release Materials\" means \"alpha\" or \"beta\" designated pre-release features, which may not be fully functional, which Intel may substantially modify in producing any production version of the Evaluation Materials and/or is still under development by Intel and/or Intel’s suppliers.\n\n2. PURPOSE. Intel desires to provide the Evaluation Materials to Recipient solely for Recipient's internal evaluation of the Evaluation Software and other Intel products, to evaluate the desirability of cooperating with Intel in developing products based on the Evaluation Software and/or to advise Intel as to possible modifications to the Evaluation Software. Recipient may not disclose, distribute or make commercial use of the Evaluation Materials or any modifications to the Evaluation Materials. THE EVALUATION MATERIALS ARE PROVIDED FOR EVALUATION PURPOSES ONLY AND MAY NOT BE DISTRIBUTED BY RECIPIENT OR INCORPORATED INTO RECIPIENT’S PRODUCTS OR SOFTWARE. PLEASE CONTACT AN INTEL SALES REPRESENTATIVE TO LEARN ABOUT THE AVAILABILITY AND COST OF A COMMERICAL VERSION OF THE EVALUATION SOFTWARE.\n\n3. TITLE. Title to the Evaluation Materials remains with Intel or its suppliers. Recipient shall not mortgage, pledge or encumber the Evaluation Materials in any way. Recipient shall return all Evaluation Materials, keeping no copies, upon termination or expiration of this Agreement.\n\n4. LICENSE. Intel grants Recipient a royalty-free, personal, nontransferable, nonexclusive license under its copyrights to use the Evaluation Software only for the purposes described in paragraph 2 above. Unless otherwise communicated in writing by Intel to Recipient, to the extent the Evaluation Software is provided in more than one delivery or release (each, a \"Release\") the license grant in this Section 4 and the Evaluation Period shall apply to each Release. Recipient may not make modifications to the Evaluation Software. Recipient shall not disassemble, reverse-engineer, or decompile any software not provided to Recipient in source code form. EXCEPT AS PROVIDED HEREIN, NO OTHER LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY OTHER INTELLECTUAL PROPERTY RIGHTS IS GRANTED TO THE RECIPIENT.\n\n5. NO OBLIGATION. Recipient shall have no duty to purchase or license any product from Intel. Intel and its suppliers shall have no obligation to provide support for, or develop a non-evaluation version of, the Evaluation Software or to license any version of it.\n\n6. MODIFICATIONS. This Agreement does NOT obligate Recipient to provide Intel with comments or suggestions regarding Evaluation Materials. However, should Recipient provide Intel with comments or suggestions for the modification, correction, improvement or enhancement of (a) the Evaluation Materials or (b) Intel products or processes which may embody the Evaluation Materials, Recipient grants to Intel a non-exclusive, irrevocable, worldwide, royalty-free license, with the right to sublicense Intel’s licensees and customers, under Recipient intellectual property rights, the rights to use and disclose such comments and suggestions in any manner Intel chooses and to display, perform, copy, make, have made, use, sell, offer to sell, import, and otherwise dispose of Intel’s and its sublicensee’s products embodying such comments and suggestions in any manner and via any media Intel chooses, without reference to the source.\n\n7. WARRANTY DISCLAIMER. INTEL AND ITS SUPPLIERS MAKE NO WARRANTIES WITH RESPECT TO EVALUATION MATERIALS, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY IMPLIED WARRANTY OF NONINFRINGEMENT. THE EVALUATION MATERIALS ARE PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND.\n\n8. LIMITATION OF LIABILITY. INTEL AND ITS SUPPLIERS SHALL NOT BE LIABLE FOR ANY PROPERTY DAMAGE, PERSONAL INJURY, LOSS OF PROFITS, INTERRUPTION OF BUSINESS OR ANY SPECIAL, CONSEQUENTIAL OR INCIDENTAL DAMAGES, HOWEVER CAUSED, WHETHER FOR BREACH OF WARRANTY, CONTRACT, STRICT LIABILITY OR OTHERWISE. INTEL AND ITS SUPPLIERS DISCLAIM ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY INTELLECTUAL PROPERTY RIGHTS RELATING TO THE EVALUATION MATERIALS.\n\n9. EXPIRATION. Intel may terminate this Agreement immediately after a breach by Recipient.\n\n10. GENERAL.\n\n10.1 Controlling Law. Any claims arising under or relating to this Agreement shall be governed by the internal substantive laws of the State of Delaware or federal courts located in Delaware, without regard to principles of conflict of laws. Each party hereby agrees to jurisdiction and venue in the courts of the State of Delaware for all disputes and litigation arising under or relating to this Agreement. The parties agree that the United Nations Convention on Contracts for the International Sale of Goods is specifically excluded from application to this Agreement. The parties consent to the personal jurisdiction of the above courts.\n\n10.2 Remedies. Recipient acknowledges that any disclosure, commercialization, or public use of the Evaluation Materials would cause irreparable injury to Intel and consents to the grant of an injunction by any court of competent jurisdiction in the event of a threatened breach.\n\n10.3 Assignment. Recipient may not delegate, assign or transfer this Agreement, the license granted or any of Recipient’s rights or duties hereunder, expressly, by implication, by operation of law, by way of merger (regardless of whether Recipient is the surviving entity) or acquisition, or otherwise and any attempt to do so, without Intel’s express prior written consent, shall be null and void. Intel may assign this Agreement, and its rights and obligations hereunder, in its sole discretion.\n\n10.4 Entire Agreement. This Agreement constitutes the entire agreement between Recipient and Intel and supersedes in their entirety any and all oral or written agreements previously existing between Recipient and Intel with respect to the subject matter hereof. This Agreement supersedes any and all \"click-to-accept\" or shrink-wrapped licenses, in hard-copy or electronic form, embedded in or included with the Evaluation Materials. This Agreement may only be amended or supplemented by a writing that refers explicitly to this Agreement and that is signed by duly authorized representatives of Recipient and Intel. Without limiting the foregoing, terms and conditions on any purchase orders or similar materials submitted by Recipient to Intel, and any terms contained in Intel’s standard acknowledgment form that are in conflict with these terms, shall be of no force or effect.\n\n10.5 Severability. In the event that any provision of this Agreement shall be unenforceable or invalid under any applicable law or be so held by applicable court decision, such unenforceability or invalidity shall not render this Agreement unenforceable or invalid as a whole, and, in such event, such provision shall be changed and interpreted so as to best accomplish the objectives of such unenforceable or invalid provision within the limits of applicable law or applicable court decisions.\n\n10.6 Export Regulations / Export Control. Recipient shall not export, either directly or indirectly, any product, service or technical data or system incorporating the Evaluation Materials without first obtaining any required license or other approval from the U.S. Department of Commerce or any other agency or department of the United States Government. In the event any product is exported from the United States or re-exported from a foreign destination by Recipient, Recipient shall ensure that the distribution and export/re-export or import of the product is in compliance with all laws, regulations, orders, or other restrictions of the U.S. Export Administration Regulations and the appropriate foreign government. Recipient agrees that neither it nor any of its subsidiaries will export/re-export any technical data, process, product, or service, directly or indirectly, to any country for which the United States government or any agency thereof or the foreign government from where it is shipping requires an export license, or other governmental approval, without first obtaining such license or approval. Recipient also agrees to implement measures to ensure that foreign national employees are authorized to receive any information controlled by U.S. export control laws. An export is \"deemed\" to take place when information is released to a foreign national wherever located.\n\n10.7 Special Terms for Pre-Release Materials. If so indicated in the description of the Evaluation Software, the Evaluation Software may contain Pre-Release Materials. Recipient hereby understands, acknowledges and agrees that: (i) Pre-Release Materials may not be fully tested and may contain bugs or errors; (ii) Pre-Release materials are not suitable for commercial release in their current state; (iii) regulatory approvals for Pre-Release Materials (such as UL or FCC) have not been obtained, and Pre-Release Materials may therefore not be certified for use in certain countries or environments and (iv) Intel can provide no assurance that it will ever produce or make generally available a production version of the Pre-Release Materials . Intel is not under any obligation to develop and/or release or offer for sale or license a final product based upon the Pre-Release Materials and may unilaterally elect to abandon the Pre-Release Materials or any such development platform at any time and without any obligation or liability whatsoever to Recipient or any other person.\n\n10.8 Open Source Software. In the event Open Source software is included with Evaluation Software, such Open Source software is licensed pursuant to the applicable Open Source software license agreement identified in the Open Source software comments in the applicable source code file(s) and/or file header provided with Evaluation Software. Additional detail may be provided (where applicable) in the accompanying on-line documentation. With respect to the Open Source software, nothing in this Agreement limits any rights under, or grants rights that supersede, the terms of any applicable Open Source software license agreement. ANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED POSSIBLY WITH FAULTS"
    ],
    "mips-android-sysimage-license": [
      "MIPS Technologies, Inc. (“MIPS”) Internal Evaluation License Agreement for MIPS Android™ System Images for Android Software Development Kit (SDK): This Internal Evaluation License Agreement (this \"Agreement\") is entered into by and between MIPS and you (as an individual developer or a legal entity -- identified below as “Recipient”). MIPS shall make the Evaluation Software available to Recipient as described in accordance with the terms and conditions set forth below.\n\nBy clicking on the “Accept” button, downloading, installing, or otherwise using the Evaluation Materials (defined below), you agree to be bound by the terms of this Agreement effective as of the date you click “Accept” (the “Effective Date”), and if doing so on behalf of an entity, you represent that you are authorized to bind the entity to the terms and conditions of this Agreement. If you do not agree to be bound by the terms and conditions of this Agreement, do not download, install, or use the Evaluation Materials.\n\n1. DEFINITIONS. These terms shall have the following meanings:\n\n1.1 “MIPS” shall mean MIPS Technologies, Inc., a Delaware corporation having a principal place of business at: 955 East Arques Ave., Sunnyvale, CA 94085\n\n1.2 “Evaluation Software” shall mean MIPS Android™ emulator system images for Android Software Development Kit (SDK), as made available to Recipient.\n\n1.3 “Evaluation Materials\" means, collectively, the Evaluation Software (in source and/or object code form) and documentation (including, without limitation, any design documents, specifications, reference manuals, and other related materials) related to the Evaluation Software as made available to Recipient.\n\n1.4 “Open Source Software” means any software that requires (as a condition of use, modification and/or distribution of such software) that such software or other software incorporated into, derived from or distributed with such software (a) be disclosed or distributed in source code form; or (b) be licensed by the user to third parties for the purpose of making and/or distributing derivative works; or (c) be redistributable at no charge. Open Source Software includes, without limitation, software licensed or distributed under any of the following licenses or distribution models, or licenses or distribution models substantially similar to any of the following: (a) GNU’s General Public License (GPL) or Lesser/Library GPL (LGPL), (b) the Artistic License (e.g., PERL), (c) the Mozilla Public License, (d) the Netscape Public License, (e) the Sun Community Source License (SCSL), (f) the Sun Industry Source License (SISL), (g) the Apache Software license and (h) the Common Public License (CPL).\n\n1.5 “Pre-Release Materials” means “alpha” or “beta” designated pre-release features, which may not be fully functional, which MIPS may substantially modify in producing any production version of the Evaluation Materials, and/or which is still under development by MIPS and/or MIPS’ suppliers.\n\n2. PURPOSE. MIPS desires to make the Evaluation Materials available to Recipient solely for Recipient's internal evaluation of the Evaluation Software to evaluate the desirability of cooperating with MIPS in developing products that are compatible with the Evaluation Software and/or to advise MIPS as to possible modifications to the Evaluation Software. Recipient may not disclose, distribute, modify (except to facilitate the above-mentioned internal evaluation), or make commercial use of the Evaluation Materials or any modifications of the Evaluation Materials.\n\nTHE EVALUATION MATERIALS ARE PROVIDED FOR EVALUATION PURPOSES ONLY AND MAY NOT BE MODIFIED (EXCEPT TO FACILITATE THE INTERNAL EVALUATION) OR DISTRIBUTED BY RECIPIENT OR INCORPORATED INTO RECIPIENT’S PRODUCTS OR SOFTWARE. PLEASE CONTACT A MIPS SALES REPRESENTATIVE TO LEARN ABOUT THE AVAILABILITY AND COST OF A COMMERCIAL VERSION OF THE EVALUATION SOFTWARE.\n\n3. TITLE. Title to the Evaluation Materials remains with MIPS or its suppliers. Recipient shall not mortgage, pledge or encumber the Evaluation Materials in any way. Recipient shall return all Evaluation Materials, keeping no copies, upon termination or expiration of this Agreement.\n\n4. LICENSE. MIPS grants Recipient a royalty-free, personal, nontransferable, nonexclusive license under its copyrights to use the Evaluation Software only for the purposes described in paragraph 2 above and only for a period beginning on the Effective Date and extending to the first anniversary of the Effective Date (the “Evaluation Period”). Unless otherwise communicated in writing by MIPS to Recipient, to the extent the Evaluation Software is provided in more than one delivery or release (each, a “Release”) the license grant in this Section 4 and the Evaluation Period shall apply to each Release, in which case the Evaluation Period shall begin on the date that the Release is made generally available and continue to the first anniversary of such date. Recipient may not make modifications to the Evaluation Software. Recipient shall not disassemble, reverse-engineer, or decompile any software that is not provided to Recipient in source code form.\n\n\nEXCEPT AS PROVIDED HEREIN, NO OTHER LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY OTHER MIPS INTELLECTUAL PROPERTY RIGHTS IS GRANTED TO THE RECIPIENT. OTHER THAN AS EXPLICITLY SET FORTH IN PARAGRAPH 2 ABOVE, NO RIGHT TO COPY, TO REPRODUCE, TO MODIFY, OR TO CREATE DERIVATIVE WORKS OF, THE EVALUATION MATERIALS IS GRANTED HEREIN.\n\n5. NO OBLIGATION. Recipient shall have no duty to purchase or license any product from MIPS. MIPS and its suppliers shall have no obligation to provide support for, or develop a non-evaluation version of, the Evaluation Software or to license any version of it.\n\n6. MODIFICATIONS. This Agreement does not obligate Recipient to provide MIPS with comments or suggestions regarding Evaluation Materials. However, should Recipient provide MIPS with comments or suggestions for the modification, correction, improvement or enhancement of (a) the Evaluation Materials or (b) MIPS products or processes which may embody the Evaluation Materials, then Recipient agrees to grant and hereby grants to MIPS a non-exclusive, irrevocable, worldwide, fully paid-up, royalty-free license, with the right to sublicense MIPS’ licensees and customers, under Recipient’s Intellectual property rights, to use and disclose such comments and suggestions in any manner MIPS chooses and to display, perform, copy, make, have made, use, sell, offer to sell, import, and otherwise dispose of MIPS’ and its sublicensee’s products embodying such comments and suggestions in any manner and via any media MIPS chooses, without reference to the source.\n\n7. WARRANTY DISCLAIMER. MIPS AND ITS SUPPLIERS MAKE NO WARRANTIES WITH RESPECT TO EVALUATION MATERIALS, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OR ANY IMPLIED WARRANTY OF NONINFRINGEMENT WITH RESPECT TO THIRD PARTY INTELLECTUAL PROPERTY. RECIPIENT ACKNOWLEDGES AND AGREES THAT THE EVALUATION MATERIALS ARE PROVIDED “AS IS,” WITHOUT WARRANTY OF ANY KIND.\n\n8. LIMITATION OF LIABILITY. MIPS AND ITS SUPPLIERS SHALL NOT BE LIABLE FOR ANY PROPERTY DAMAGE, PERSONAL INJURY, LOSS OF PROFITS, INTERRUPTION OF BUSINESS OR FOR ANY DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL OR INCIDENTAL DAMAGES, HOWEVER CAUSED OR ALLEGED, WHETHER FOR BREACH OF WARRANTY, CONTRACT, STRICT LIABILITY OR OTHERWISE, INCLUDING WITHOUT LIMITATION, UNDER TORT OR OTHER LEGAL THEORY. MIPS AND ITS SUPPLIERS DISCLAIM ANY AND ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY INTELLECTUAL PROPERTY RIGHTS OF ANY KIND RELATING TO THE EVALUATION MATERIALS.\n\n9. EXPIRATION. MIPS may terminate this Agreement immediately after a breach by Recipient or otherwise at MIPS’ reasonable discretion and upon five (5) business days’ notice to Recipient.\n\n10. GENERAL.\n\n10.1 Controlling Law. This Agreement shall be governed by California law excluding its choice of law rules. With the exception of MIPS’ rights to enforce its intellectual property rights and any confidentiality obligations under this Agreement or any licenses distributed with the Evaluation Materials, all disputes and any claims arising under or relating to this Agreement shall be subject to the exclusive jurisdiction and venue of the state and federal courts located in Santa Clara County, California. Each party hereby agrees to jurisdiction and venue in the courts set forth in the preceding sentence. The parties agree that the United Nations Convention on Contracts for the International Sale of Goods is specifically excluded from application to this Agreement. The parties consent to the personal jurisdiction of the above courts.\n\n10.2 Remedies. Recipient acknowledges and agrees that any breach of confidentiality obligations under this Agreement or any licenses distributed with the Evaluation Materials, as well as any disclosure, commercialization, or public use of the Evaluation Materials, would cause irreparable injury to MIPS, and therefore Recipient agrees to consent to, and hereby consents to, the grant of an injunction by any court of competent jurisdiction in the event of an actual or threatened breach.\n\n10.3 Assignment. Recipient may not delegate, assign or transfer this Agreement, the license granted or any of Recipient’s rights, obligations, or duties hereunder, expressly, by implication, by operation of law, by way of merger (regardless of whether Recipient is the surviving entity) or acquisition, or otherwise and any attempt to do so, without MIPS’ express prior written consent, shall be ineffective, null and void. MIPS may freely assign this Agreement, and its rights and obligations hereunder, in its sole discretion.\n\n10.4 Entire Agreement. This Agreement constitutes the entire agreement between Recipient and MIPS and supersedes in their entirety any and all oral or written agreements previously existing between Recipient and MIPS with respect to the subject matter hereof. This Agreement may only be amended or supplemented by a writing that refers explicitly to this Agreement and that is signed or otherwise accepted by duly authorized representatives of Recipient and MIPS.\n\n10.5 Severability. In the event that any provision of this Agreement is finally adjudicated to be unenforceable or invalid under any applicable law, such unenforceability or invalidity shall not render this Agreement unenforceable or invalid as a whole, and, in such event, such unenforceable or invalid provision shall be interpreted so as to best accomplish the objectives of such provision within the limits of applicable law or applicable court decisions.\n\n10.6 Export Regulations / Export Control. Recipient shall not export, either directly or indirectly, any product, service or technical data or system incorporating the Evaluation Materials without first obtaining any required license or other necessary approval from the U.S. Department of Commerce or any other governing agency or department of the United States Government. In the event any product is exported from the United States or re-exported from a foreign destination by Recipient, Recipient shall ensure that the distribution and export/re-export or import of the product is in compliance with all applicable laws, regulations, orders, or other restrictions of the U.S. Export Administration Regulations and the appropriate foreign government. Recipient agrees that neither it nor any of its subsidiaries will export/re-export any technical data, process, product, or service, directly or indirectly, to any country for which the United States government or any agency thereof or the foreign government from where it is shipping requires an export license, or other governmental approval, without first obtaining such license or approval. Recipient also agrees to implement measures to ensure that foreign national employees are authorized to receive any information controlled by U.S. export control laws. An export is \"deemed\" to take place when information is released to a foreign national wherever located.\n\n10.7 Special Terms for Pre-Release Materials. If so indicated in the description of the Evaluation Software, the Evaluation Software may contain Pre-Release Materials. Recipient hereby understands, acknowledges and agrees that: (i) Pre-Release Materials may not be fully tested and may contain bugs or errors; (ii) Pre-Release materials are not suitable for commercial release in their current state; (iii) regulatory approvals for Pre-Release Materials (such as UL or FCC) have not been obtained, and Pre-Release Materials may therefore not be certified for use in certain countries or environments or may not be suitable for certain applications and (iv) MIPS can provide no assurance that it will ever produce or make generally available a production version of the Pre-Release Materials . MIPS is not under any obligation to develop and/or release or offer for sale or license a final product based upon the Pre-Release Materials and may unilaterally elect to abandon the Pre-Release Materials or any such development platform at any time and without any obligation or liability whatsoever to Recipient or any other person.\n\nANY PRE-RELEASE MATERIALS ARE NON-QUALIFIED AND, AS SUCH, ARE PROVIDED “AS IS” AND “AS AVAILABLE”, POSSIBLY WITH FAULTS, AND WITHOUT REPRESENTATION OR WARRANTY OF ANY KIND.\n\n10.8 Open Source Software. In the event Open Source software is included with Evaluation Software, such Open Source software is licensed pursuant to the applicable Open Source software license agreement identified in the Open Source software comments in the applicable source code file(s) and/or file header as indicated in the Evaluation Software. Additional detail may be available (where applicable) in the accompanying on-line documentation. With respect to the Open Source software, nothing in this Agreement limits any rights under, or grants rights that supersede, the terms of any applicable Open Source software license agreement.\n"
    ]
  },
  "packages": {
    "build-tools": {
      "17.0.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "2c2872bc3806aabf16a12e3959c2183ddc866e6d",
            "size": 11696007,
            "url": "https://dl.google.com/android/repository/build-tools_r17-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "602ee709be9dbb8f179b1e4075148a57f9419930",
            "size": 12208114,
            "url": "https://dl.google.com/android/repository/build-tools_r17-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "899897d327b0bad492d3a40d3db4d96119c15bc0",
            "size": 11004914,
            "url": "https://dl.google.com/android/repository/build-tools_r17-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 17",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/17.0.0",
        "revision": "17.0.0"
      },
      "18.0.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "f11618492b0d2270c332325d45d752d3656a9640",
            "size": 16627330,
            "url": "https://dl.google.com/android/repository/build-tools_r18.0.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "d84f5692fb44d60fc53e5b2507cebf9f24626902",
            "size": 16633121,
            "url": "https://dl.google.com/android/repository/build-tools_r18.0.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "a6c2afd0b6289d589351956d2f5212b37014ca7d",
            "size": 15413527,
            "url": "https://dl.google.com/android/repository/build-tools_r18.0.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 18.0.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/18.0.1",
        "revision": "18.0.1"
      },
      "18.1.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "f314a0599e51397f0886fe888b50dd98f2f050d8",
            "size": 20229298,
            "url": "https://dl.google.com/android/repository/build-tools_r18.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "16ddb299b8b43063e5bb3387ec17147c5053dfd8",
            "size": 20451524,
            "url": "https://dl.google.com/android/repository/build-tools_r18.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "3a9810fc8559ab03c09378f07531e8cae2f1db30",
            "size": 19659547,
            "url": "https://dl.google.com/android/repository/build-tools_r18.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 18.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/18.1.0",
        "revision": "18.1.0"
      },
      "18.1.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "68c9acbfc0cec2d51b19efaed39831a17055d998",
            "size": 20229760,
            "url": "https://dl.google.com/android/repository/build-tools_r18.1.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "a9d9d37f6ddf859e57abc78802a77aaa166e48d4",
            "size": 20452157,
            "url": "https://dl.google.com/android/repository/build-tools_r18.1.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "c4605066e2f851387ea70bc1442b1968bd7b4a15",
            "size": 19660000,
            "url": "https://dl.google.com/android/repository/build-tools_r18.1.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 18.1.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/18.1.1",
        "revision": "18.1.1"
      },
      "19.0.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "55c1a6cf632e7d346f0002b275ec41fd3137fd83",
            "size": 21339943,
            "url": "https://dl.google.com/android/repository/build-tools_r19-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "86ec1c12db1bc446b7bcaefc5cc14eb361044e90",
            "size": 21441270,
            "url": "https://dl.google.com/android/repository/build-tools_r19-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "6edf505c20f5ece9c48fa0aff9a90488f9654d52",
            "size": 20611447,
            "url": "https://dl.google.com/android/repository/build-tools_r19-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 19",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/19.0.0",
        "revision": "19.0.0"
      },
      "19.0.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "18d2312dc4368858914213087f4e61445aca4517",
            "size": 21229048,
            "url": "https://dl.google.com/android/repository/build-tools_r19.0.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "efaf50fb19a3edb8d03efbff76f89a249ad2920b",
            "size": 21450597,
            "url": "https://dl.google.com/android/repository/build-tools_r19.0.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "5ef422bac5b28f4ced108319ed4a6bc7050a6234",
            "size": 20500648,
            "url": "https://dl.google.com/android/repository/build-tools_r19.0.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 19.0.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/19.0.1",
        "revision": "19.0.1"
      },
      "19.0.2": {
        "archives": [
          {
            "os": "linux",
            "sha1": "a03a6bdea0091aea32e1b35b90a7294c9f04e3dd",
            "size": 21352552,
            "url": "https://dl.google.com/android/repository/build-tools_r19.0.2-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "145bc43065d45f756d99d87329d899052b9a9288",
            "size": 21453726,
            "url": "https://dl.google.com/android/repository/build-tools_r19.0.2-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "af664672d0d709c9ae30937b1062317d3ade7f95",
            "size": 20621117,
            "url": "https://dl.google.com/android/repository/build-tools_r19.0.2-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 19.0.2",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/19.0.2",
        "revision": "19.0.2"
      },
      "19.0.3": {
        "archives": [
          {
            "os": "linux",
            "sha1": "c2d6055478e9d2d4fba476ee85f99181ddd1160c",
            "size": 21462150,
            "url": "https://dl.google.com/android/repository/build-tools_r19.0.3-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "651cf8754373b2d52e7f6aab2c52eabffe4e9ea4",
            "size": 21563992,
            "url": "https://dl.google.com/android/repository/build-tools_r19.0.3-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "cb46b433b67a0a6910ff00db84be8b527ea3102f",
            "size": 20730715,
            "url": "https://dl.google.com/android/repository/build-tools_r19.0.3-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 19.0.3",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/19.0.3",
        "revision": "19.0.3"
      },
      "19.1.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "1ff20ac15fa47a75d00346ec12f180d531b3ca89",
            "size": 21490972,
            "url": "https://dl.google.com/android/repository/build-tools_r19.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "0d11aae3417de1efb4b9a0e0a7855904a61bcec1",
            "size": 21590160,
            "url": "https://dl.google.com/android/repository/build-tools_r19.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "13b367fbdbff8132cb4356f716e8dc8a8df745c5",
            "size": 20812533,
            "url": "https://dl.google.com/android/repository/build-tools_r19.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 19.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/19.1.0",
        "revision": "19.1.0"
      },
      "20.0.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "b688905526a5584d1327a662d871a635ff502758",
            "size": 21445463,
            "url": "https://dl.google.com/android/repository/build-tools_r20-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "1240f629411c108a714c4ddd756937c7fab93f83",
            "size": 21650508,
            "url": "https://dl.google.com/android/repository/build-tools_r20-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "cf20720e452b642d5eb59dabe05c0c729b36ec75",
            "size": 20828006,
            "url": "https://dl.google.com/android/repository/build-tools_r20-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 20",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/20.0.0",
        "revision": "20.0.0"
      },
      "21.0.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "4933328fdeecbd554a29528f254f4993468e1cf4",
            "size": 22153145,
            "url": "https://dl.google.com/android/repository/build-tools_r21-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "9bef7989b51436bd4e5114d8a0330359f077cbfa",
            "size": 22668456,
            "url": "https://dl.google.com/android/repository/build-tools_r21-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "5bc8fd399bc0135a9bc91eec78ddc5af4f54bf32",
            "size": 22306371,
            "url": "https://dl.google.com/android/repository/build-tools_r21-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 21",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/21.0.0",
        "revision": "21.0.0"
      },
      "21.0.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "e573069eea3e5255e7a65bedeb767f4fd0a5f49a",
            "size": 22153013,
            "url": "https://dl.google.com/android/repository/build-tools_r21.0.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "b60c8f9b810c980abafa04896706f3911be1ade7",
            "size": 22668616,
            "url": "https://dl.google.com/android/repository/build-tools_r21.0.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "d68e7e6fd7a48c8759aa41d713c9d4f0e4c1c1df",
            "size": 22306243,
            "url": "https://dl.google.com/android/repository/build-tools_r21.0.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 21.0.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/21.0.1",
        "revision": "21.0.1"
      },
      "21.0.2": {
        "archives": [
          {
            "os": "linux",
            "sha1": "e1236ab8897b62b57414adcf04c132567b2612a5",
            "size": 22153122,
            "url": "https://dl.google.com/android/repository/build-tools_r21.0.2-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "f17471c154058f3734729ef3cc363399b1cd3de1",
            "size": 22668597,
            "url": "https://dl.google.com/android/repository/build-tools_r21.0.2-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "37496141b23cbe633167927b7abe6e22d9f1a1c1",
            "size": 22306371,
            "url": "https://dl.google.com/android/repository/build-tools_r21.0.2-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 21.0.2",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/21.0.2",
        "revision": "21.0.2"
      },
      "21.1.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "b7455e543784d52a8925f960bc880493ed1478cb",
            "size": 32642820,
            "url": "https://dl.google.com/android/repository/build-tools_r21.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "df619356c2359aa5eacdd48699d15b335d9bd246",
            "size": 33158159,
            "url": "https://dl.google.com/android/repository/build-tools_r21.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "c79d63ac6b713a1e326ad4dae43f2ee76708a2f4",
            "size": 32797810,
            "url": "https://dl.google.com/android/repository/build-tools_r21.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 21.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/21.1.0",
        "revision": "21.1.0"
      },
      "21.1.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "1c712ee3a1ba5a8b0548f9c32f17d4a0ddfd727d",
            "size": 32642454,
            "url": "https://dl.google.com/android/repository/build-tools_r21.1.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "836a146eab0504aa9387a5132e986fe7c7381571",
            "size": 33157676,
            "url": "https://dl.google.com/android/repository/build-tools_r21.1.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "53fc4201237f899d5cd92f0b76ad41fb89da188b",
            "size": 32797356,
            "url": "https://dl.google.com/android/repository/build-tools_r21.1.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 21.1.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/21.1.1",
        "revision": "21.1.1"
      },
      "21.1.2": {
        "archives": [
          {
            "os": "linux",
            "sha1": "5e35259843bf2926113a38368b08458735479658",
            "size": 32637678,
            "url": "https://dl.google.com/android/repository/build-tools_r21.1.2-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "e7c906b4ba0eea93b32ba36c610dbd6b204bff48",
            "size": 33152878,
            "url": "https://dl.google.com/android/repository/build-tools_r21.1.2-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "1d944759c47f60e634d2b8a1f3a4259be2f8d652",
            "size": 32792587,
            "url": "https://dl.google.com/android/repository/build-tools_r21.1.2-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 21.1.2",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/21.1.2",
        "revision": "21.1.2"
      },
      "22.0.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "a8a1619dd090e44fac957bce6842e62abf87965b",
            "size": 33104280,
            "url": "https://dl.google.com/android/repository/build-tools_r22-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "af95429b24088d704bc5db9bd606e34ac1b82c0d",
            "size": 33646090,
            "url": "https://dl.google.com/android/repository/build-tools_r22-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "08fcca41e81b172bd9f570963b90d3a84929e043",
            "size": 33254114,
            "url": "https://dl.google.com/android/repository/build-tools_r22-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 22",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/22.0.0",
        "revision": "22.0.0"
      },
      "22.0.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "da8b9c5c3ede39298e6cf0283c000c2ee9029646",
            "size": 33104577,
            "url": "https://dl.google.com/android/repository/build-tools_r22.0.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "53dad7f608e01d53b17176ba11165acbfccc5bbf",
            "size": 33646102,
            "url": "https://dl.google.com/android/repository/build-tools_r22.0.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "61d8cbe069d9e0a57872a83e5e5abe164b7d52cf",
            "size": 33254137,
            "url": "https://dl.google.com/android/repository/build-tools_r22.0.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 22.0.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/22.0.1",
        "revision": "22.0.1"
      },
      "23.0.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "c1d6209212b01469f80fa804e0c1d39a06bc9060",
            "size": 39080519,
            "url": "https://dl.google.com/android/repository/build-tools_r23-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "90ba6e716f7703a236cd44b2e71c5ff430855a03",
            "size": 38070540,
            "url": "https://dl.google.com/android/repository/build-tools_r23-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "3874948f35f2f8946597679cc6e9151449f23b5d",
            "size": 38570715,
            "url": "https://dl.google.com/android/repository/build-tools_r23-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 23",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/23.0.0",
        "revision": "23.0.0"
      },
      "23.0.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "b6ba7c399d5fa487d95289d8832e4ad943aed556",
            "size": 39069295,
            "url": "https://dl.google.com/android/repository/build-tools_r23.0.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "d96ec1522721e9a179ae2c591c99f75d31d39718",
            "size": 38059328,
            "url": "https://dl.google.com/android/repository/build-tools_r23.0.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "cc1d37231d228f7a6f130e1f8d8c940052f0f8ab",
            "size": 38558889,
            "url": "https://dl.google.com/android/repository/build-tools_r23.0.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 23.0.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/23.0.1",
        "revision": "23.0.1"
      },
      "23.0.2": {
        "archives": [
          {
            "os": "linux",
            "sha1": "8a9f2b37f6fcf7a9fa784dc21aeaeb41bbb9f2c3",
            "size": 39071201,
            "url": "https://dl.google.com/android/repository/build-tools_r23.0.2-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "482c4cbceef8ff58aefd92d8155a38610158fdaf",
            "size": 38060914,
            "url": "https://dl.google.com/android/repository/build-tools_r23.0.2-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "fc3a92c744d3ba0a16ccb5d2b41eea5974ce0a96",
            "size": 38217626,
            "url": "https://dl.google.com/android/repository/build-tools_r23.0.2-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 23.0.2",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/23.0.2",
        "revision": "23.0.2"
      },
      "23.0.3": {
        "archives": [
          {
            "os": "linux",
            "sha1": "368f2600feac7e9b511b82f53d1f2240ae4a91a3",
            "size": 40733174,
            "url": "https://dl.google.com/android/repository/build-tools_r23.0.3-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "fbc98cd303fd15a31d472de6c03bd707829f00b0",
            "size": 39679533,
            "url": "https://dl.google.com/android/repository/build-tools_r23.0.3-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "c6d8266c6a3243c8f1e41b786c0e3cee4c781263",
            "size": 39869945,
            "url": "https://dl.google.com/android/repository/build-tools_r23.0.3-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 23.0.3",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/23.0.3",
        "revision": "23.0.3"
      },
      "24.0.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "c6271c4d78a5612ea6c7150688bcd5b7313de8d1",
            "size": 48960919,
            "url": "https://dl.google.com/android/repository/build-tools_r24-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "97fc4ed442f23989cc488d02c1d1de9bdde241de",
            "size": 48747930,
            "url": "https://dl.google.com/android/repository/build-tools_r24-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "dc61b9e5b451a0c3ec42ae2b1ce27c4d3c8da9f7",
            "size": 49535326,
            "url": "https://dl.google.com/android/repository/build-tools_r24-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 24",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/24.0.0",
        "revision": "24.0.0"
      },
      "24.0.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "84f18c392919a074fcbb9b1d967984e6b2fef8b4",
            "size": 48936286,
            "url": "https://dl.google.com/android/repository/build-tools_r24.0.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "5c6457fcdfa07724fb086d8ff4e8316fc0742848",
            "size": 48726085,
            "url": "https://dl.google.com/android/repository/build-tools_r24.0.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "ac4a7cea42c3ef74d7fbf1b992fad311c550034e",
            "size": 49511883,
            "url": "https://dl.google.com/android/repository/build-tools_r24.0.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 24.0.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/24.0.1",
        "revision": "24.0.1"
      },
      "24.0.2": {
        "archives": [
          {
            "os": "linux",
            "sha1": "f199a7a788c3fefbed102eea34d6007737b803cf",
            "size": 48936295,
            "url": "https://dl.google.com/android/repository/build-tools_r24.0.2-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "8bb8fc575477491d5957de743089df412de55cda",
            "size": 48726190,
            "url": "https://dl.google.com/android/repository/build-tools_r24.0.2-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "09586a1f1c39bcfa7db5205c9a07837247deb67e",
            "size": 49512513,
            "url": "https://dl.google.com/android/repository/build-tools_r24.0.2-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 24.0.2",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/24.0.2",
        "revision": "24.0.2"
      },
      "24.0.3": {
        "archives": [
          {
            "os": "linux",
            "sha1": "9e8cc49d66e03fa1a8ecc1ac3e58f1324f5da304",
            "size": 49779151,
            "url": "https://dl.google.com/android/repository/build-tools_r24.0.3-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "a01c15f1b105c34595681075e1895d58b3fff48c",
            "size": 49568967,
            "url": "https://dl.google.com/android/repository/build-tools_r24.0.3-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "8b960d693fd4163caeb8dc5f5f5f80b10987089c",
            "size": 50354788,
            "url": "https://dl.google.com/android/repository/build-tools_r24.0.3-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 24.0.3",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/24.0.3",
        "revision": "24.0.3"
      },
      "25.0.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "f2bbda60403e75cabd0f238598c3b4dfca56ea44",
            "size": 49872921,
            "url": "https://dl.google.com/android/repository/build-tools_r25-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "273c5c29a65cbed00e44f3aa470bbd7dce556606",
            "size": 49659466,
            "url": "https://dl.google.com/android/repository/build-tools_r25-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "f9258f2308ff8b62cfc4513d40cb961612d07b6a",
            "size": 50451378,
            "url": "https://dl.google.com/android/repository/build-tools_r25-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 25",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/25.0.0",
        "revision": "25.0.0"
      },
      "25.0.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "ff063d252ab750d339f5947d06ff782836f22bac",
            "size": 49880178,
            "url": "https://dl.google.com/android/repository/build-tools_r25.0.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "7bf7f22d7d48ef20b6ab0e3d7a2912e5c088340f",
            "size": 49667353,
            "url": "https://dl.google.com/android/repository/build-tools_r25.0.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "c6c61393565ccf46349e7f44511e5db7c1c6169d",
            "size": 50458759,
            "url": "https://dl.google.com/android/repository/build-tools_r25.0.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 25.0.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/25.0.1",
        "revision": "25.0.1"
      },
      "25.0.2": {
        "archives": [
          {
            "os": "linux",
            "sha1": "ff953c0177e317618fda40516f3e9d95fd43c7ae",
            "size": 49880329,
            "url": "https://dl.google.com/android/repository/build-tools_r25.0.2-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "12a5204bb3b6e39437535469fde7ddf42da46b16",
            "size": 49667185,
            "url": "https://dl.google.com/android/repository/build-tools_r25.0.2-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "2fee3c0704d6ecc480570450d8b8069b2c4a2dd4",
            "size": 50458908,
            "url": "https://dl.google.com/android/repository/build-tools_r25.0.2-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 25.0.2",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/25.0.2",
        "revision": "25.0.2"
      },
      "25.0.3": {
        "archives": [
          {
            "os": "linux",
            "sha1": "db95f3a0ae376534d4d69f4cdb6fad20649f3509",
            "size": 50757258,
            "url": "https://dl.google.com/android/repository/build-tools_r25.0.3-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "160d2fefb5ce68e443427fc30a793a703b63e26e",
            "size": 50545085,
            "url": "https://dl.google.com/android/repository/build-tools_r25.0.3-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "1edcb109ae5133aebfed573cf0bc84e0c353c28d",
            "size": 51337442,
            "url": "https://dl.google.com/android/repository/build-tools_r25.0.3-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 25.0.3",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/25.0.3",
        "revision": "25.0.3"
      },
      "26.0.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "1cbe72929876f8a872ab1f1b1040a9f720261f59",
            "size": 53854197,
            "url": "https://dl.google.com/android/repository/build-tools_r26-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "d01a1aeca03747245f1f5936b3cb01759c66d086",
            "size": 53010814,
            "url": "https://dl.google.com/android/repository/build-tools_r26-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "896ebd31117c09db220f7a3116cc0e5121c78b9d",
            "size": 54681641,
            "url": "https://dl.google.com/android/repository/build-tools_r26-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 26",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/26.0.0",
        "revision": "26.0.0"
      },
      "26.0.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "5378c2c78091b414d0eac40a6bd37f2faa31a365",
            "size": 54113329,
            "url": "https://dl.google.com/android/repository/build-tools_r26.0.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "cbde59de198916b390777dd0227921bfa2120832",
            "size": 53266653,
            "url": "https://dl.google.com/android/repository/build-tools_r26.0.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "02494c80ffbe65bfff0aaa7463c9692693327b7d",
            "size": 54936185,
            "url": "https://dl.google.com/android/repository/build-tools_r26.0.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 26.0.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/26.0.1",
        "revision": "26.0.1"
      },
      "26.0.2": {
        "archives": [
          {
            "os": "linux",
            "sha1": "5b2b7b66c7bf2151f2af183b5b50a17808850592",
            "size": 54440678,
            "url": "https://dl.google.com/android/repository/build-tools_r26.0.2-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "d9ed7c7f149ce38be5dc08979aea8acec1459ca0",
            "size": 53830573,
            "url": "https://dl.google.com/android/repository/build-tools_r26.0.2-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "39ca02d3faa49859cd9d1bc0adc2f331017b699b",
            "size": 55161474,
            "url": "https://dl.google.com/android/repository/build-tools_r26.0.2-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 26.0.2",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/26.0.2",
        "revision": "26.0.2"
      },
      "26.0.3": {
        "archives": [
          {
            "os": "linux",
            "sha1": "8a2e6c1bcd845844523a68aa17e5442f0dce328c",
            "size": 54449983,
            "url": "https://dl.google.com/android/repository/build-tools_r26.0.3-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "5bb90ed935d99e5bc90686f43b852e68c5ad40df",
            "size": 53839758,
            "url": "https://dl.google.com/android/repository/build-tools_r26.0.3-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "460e511a9616b4661cc8dba0102d9d990ae60160",
            "size": 55170919,
            "url": "https://dl.google.com/android/repository/build-tools_r26.0.3-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 26.0.3",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/26.0.3",
        "revision": "26.0.3"
      },
      "27.0.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "28542332ba97cf4a08c3eddfcf5edd70e3cf1260",
            "size": 54441725,
            "url": "https://dl.google.com/android/repository/build-tools_r27-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "fb4e8d7e6b8d29a77090e34024077a80458d5ae1",
            "size": 53831513,
            "url": "https://dl.google.com/android/repository/build-tools_r27-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "4f1df22a6d99261d2160d624b81445da0a027dbe",
            "size": 55163097,
            "url": "https://dl.google.com/android/repository/build-tools_r27-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 27",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/27.0.0",
        "revision": "27.0.0"
      },
      "27.0.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "7f4eedb1077ef948b848040dcd15de9e8a759f4a",
            "size": 54450260,
            "url": "https://dl.google.com/android/repository/build-tools_r27.0.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "1edd07bfdbadd95652d093040e16d858f7489594",
            "size": 53838762,
            "url": "https://dl.google.com/android/repository/build-tools_r27.0.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "18109db020c6d088d0157d1df201d31bc6970875",
            "size": 55171114,
            "url": "https://dl.google.com/android/repository/build-tools_r27.0.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 27.0.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/27.0.1",
        "revision": "27.0.1"
      },
      "27.0.2": {
        "archives": [
          {
            "os": "linux",
            "sha1": "b687ddf6be84f11607871138aad32cf857d0b837",
            "size": 54458153,
            "url": "https://dl.google.com/android/repository/build-tools_r27.0.2-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "6d5d9cf2a47877f273f4b742b19e712a051a31be",
            "size": 53846615,
            "url": "https://dl.google.com/android/repository/build-tools_r27.0.2-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "b80466c13b75e3ebf3c546964f40775db5898b2a",
            "size": 55173070,
            "url": "https://dl.google.com/android/repository/build-tools_r27.0.2-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 27.0.2",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/27.0.2",
        "revision": "27.0.2"
      },
      "27.0.3": {
        "archives": [
          {
            "os": "linux",
            "sha1": "d85e7a6320eddffe7eeace3437605079dac938ca",
            "size": 54478554,
            "url": "https://dl.google.com/android/repository/build-tools_r27.0.3-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "61d9fb18790c68d66ff73bf1e7ad56bc1f1eef2d",
            "size": 53867966,
            "url": "https://dl.google.com/android/repository/build-tools_r27.0.3-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "0df61e11713a2838d2cc9a911219dddf5e6a2749",
            "size": 55194255,
            "url": "https://dl.google.com/android/repository/build-tools_r27.0.3-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 27.0.3",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/27.0.3",
        "revision": "27.0.3"
      },
      "28.0.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "d9f8a754d833ccd334f56fcc6089c5925cd82abb",
            "size": 37157769,
            "url": "https://dl.google.com/android/repository/build-tools_r28-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "72088d32d1d82cc3c2cf7cf6618b6130c0c84ade",
            "size": 36458977,
            "url": "https://dl.google.com/android/repository/build-tools_r28-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "d4b0638a877ed570e07876264e69fdbd86409610",
            "size": 37718995,
            "url": "https://dl.google.com/android/repository/build-tools_r28-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 28",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/28.0.0",
        "revision": "28.0.0"
      },
      "28.0.0-rc1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "1601977fae25fd478bcfaa0481ca5ea3c609d840",
            "size": 38703535,
            "url": "https://dl.google.com/android/repository/build-tools_r28-rc1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "2c77821967a2330b7b227072d0b1c02ef19fe2fc",
            "size": 38004795,
            "url": "https://dl.google.com/android/repository/build-tools_r28-rc1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "fbf46c33d1268f6532911707b2a05033fd5c5b41",
            "size": 39273232,
            "url": "https://dl.google.com/android/repository/build-tools_r28-rc1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 28-rc1",
        "license": "android-sdk-preview-license",
        "name": "build-tools",
        "path": "build-tools/28.0.0-rc1",
        "revision": "28.0.0-rc1"
      },
      "28.0.0-rc2": {
        "archives": [
          {
            "os": "linux",
            "sha1": "efe9c0dde0646a07544c864276390ca6e96b24dc",
            "size": 37151124,
            "url": "https://dl.google.com/android/repository/build-tools_r28-rc2-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "0d0314b353589feb10e528b44c5a685b6658d797",
            "size": 36449480,
            "url": "https://dl.google.com/android/repository/build-tools_r28-rc2-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "a94bfb52b4ec74b95c116236c3e382e923cad6c4",
            "size": 37716459,
            "url": "https://dl.google.com/android/repository/build-tools_r28-rc2-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 28-rc2",
        "license": "android-sdk-preview-license",
        "name": "build-tools",
        "path": "build-tools/28.0.0-rc2",
        "revision": "28.0.0-rc2"
      },
      "28.0.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "ee70dfa1fccb58b37cebc9544830511f36a137a0",
            "size": 57610954,
            "url": "https://dl.google.com/android/repository/build-tools_r28.0.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "aeef42ad953f1630dd6f5d71eefdc0b825211462",
            "size": 56913869,
            "url": "https://dl.google.com/android/repository/build-tools_r28.0.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "29c6342835734be25b9e458ab3fad5750ad6a355",
            "size": 58173989,
            "url": "https://dl.google.com/android/repository/build-tools_r28.0.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 28.0.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/28.0.1",
        "revision": "28.0.1"
      },
      "28.0.2": {
        "archives": [
          {
            "os": "linux",
            "sha1": "b4492209810a3fd48deaa982f9852fef12433d55",
            "size": 57754663,
            "url": "https://dl.google.com/android/repository/build-tools_r28.0.2-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "c10dd5a7825578622fb362a8a34f76eb3ba0c0a9",
            "size": 57057554,
            "url": "https://dl.google.com/android/repository/build-tools_r28.0.2-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "e9c570c568a0c2a32e88ee3204279019ebefd949",
            "size": 58317692,
            "url": "https://dl.google.com/android/repository/build-tools_r28.0.2-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 28.0.2",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/28.0.2",
        "revision": "28.0.2"
      },
      "28.0.3": {
        "archives": [
          {
            "os": "linux",
            "sha1": "ea6f2f7103cd9da9ff0bdf6e37fbbba548fa4165",
            "size": 57830695,
            "url": "https://dl.google.com/android/repository/build-tools_r28.0.3-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "f8c333a2991b1ab05a671bc6248b78e00edcd83a",
            "size": 57133581,
            "url": "https://dl.google.com/android/repository/build-tools_r28.0.3-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "05bd35bb48d11c848da2b393c6f864eb609aacba",
            "size": 58393729,
            "url": "https://dl.google.com/android/repository/build-tools_r28.0.3-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 28.0.3",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/28.0.3",
        "revision": "28.0.3"
      },
      "29.0.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "ad314caf1802209c4b00a5f3517af5ceb0d48eae",
            "size": 58650449,
            "url": "https://dl.google.com/android/repository/build-tools_r29-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "35dc6bc7a53bd9d206847e72f02cab21cfdaa869",
            "size": 57820193,
            "url": "https://dl.google.com/android/repository/build-tools_r29-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "1799f7f975416098e5a5bf280eb97c8f77cf7f79",
            "size": 57098799,
            "url": "https://dl.google.com/android/repository/build-tools_r29-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 29",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/29.0.0",
        "revision": "29.0.0"
      },
      "29.0.0-rc1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "1c897f5885ac5468613e40e1ea598c21c05d345d",
            "size": 58516671,
            "url": "https://dl.google.com/android/repository/build-tools_r29-rc1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "f066c0d9ea2f0d8a0a9cc7b2ca0a467a570ab034",
            "size": 57704927,
            "url": "https://dl.google.com/android/repository/build-tools_r29-rc1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "8887ee791a143f92694a0908130354142a903b17",
            "size": 56933956,
            "url": "https://dl.google.com/android/repository/build-tools_r29-rc1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 29-rc1",
        "license": "android-sdk-preview-license",
        "name": "build-tools",
        "path": "build-tools/29.0.0-rc1",
        "revision": "29.0.0-rc1"
      },
      "29.0.0-rc2": {
        "archives": [
          {
            "os": "linux",
            "sha1": "b4b41d429c35b42db07b6c65d4aa998ba8c4093c",
            "size": 58602830,
            "url": "https://dl.google.com/android/repository/build-tools_r29-rc2-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "7a960367999169ccac5dbc60817e5f1725c4c738",
            "size": 57785717,
            "url": "https://dl.google.com/android/repository/build-tools_r29-rc2-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "2de2a3e290cae4ce35e82c8a5abed49b1cdd24e3",
            "size": 57000706,
            "url": "https://dl.google.com/android/repository/build-tools_r29-rc2-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 29-rc2",
        "license": "android-sdk-preview-license",
        "name": "build-tools",
        "path": "build-tools/29.0.0-rc2",
        "revision": "29.0.0-rc2"
      },
      "29.0.0-rc3": {
        "archives": [
          {
            "os": "linux",
            "sha1": "8b7177f198e8b92da8f9537aaf859f6edf222b01",
            "size": 58639871,
            "url": "https://dl.google.com/android/repository/build-tools_r29-rc3-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "643e8d76625f6e2cfcd5494e50bae5e14725ec0c",
            "size": 57810162,
            "url": "https://dl.google.com/android/repository/build-tools_r29-rc3-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "6abce2ebfecf3580afd3129520999f95691a03df",
            "size": 57092256,
            "url": "https://dl.google.com/android/repository/build-tools_r29-rc3-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 29-rc3",
        "license": "android-sdk-preview-license",
        "name": "build-tools",
        "path": "build-tools/29.0.0-rc3",
        "revision": "29.0.0-rc3"
      },
      "29.0.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "fc209e5d91ab2daeac24345a5cb17261940547e4",
            "size": 41682816,
            "url": "https://dl.google.com/android/repository/build-tools_r29.0.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "46ae9b1d1e2a67241d7da9c2cd8eae42f24cc6cd",
            "size": 40852521,
            "url": "https://dl.google.com/android/repository/build-tools_r29.0.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "1c44e10d5f74e58c3e05bfc6f1631a59616059bc",
            "size": 40163897,
            "url": "https://dl.google.com/android/repository/build-tools_r29.0.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 29.0.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/29.0.1",
        "revision": "29.0.1"
      },
      "29.0.2": {
        "archives": [
          {
            "os": "linux",
            "sha1": "c0fc7e5c37ac96bfd0c611802e8ab36d0e71b398",
            "size": 41678888,
            "url": "https://dl.google.com/android/repository/build-tools_r29.0.2-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "f781d9e03d5c2debcf51fed3792ee7a9d066723f",
            "size": 40848529,
            "url": "https://dl.google.com/android/repository/build-tools_r29.0.2-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "595dc1730c844d892516d5f0e7894e992d19f63d",
            "size": 40159970,
            "url": "https://dl.google.com/android/repository/build-tools_r29.0.2-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 29.0.2",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/29.0.2",
        "revision": "29.0.2"
      },
      "29.0.3": {
        "archives": [
          {
            "os": "linux",
            "sha1": "64efff52165cda5e31848acafa46a05e3f3b4651",
            "size": 53797376,
            "url": "https://dl.google.com/android/repository/build-tools_r29.0.3-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "76520eb7712fb0bb4c023b55c6f65588ee268289",
            "size": 52432183,
            "url": "https://dl.google.com/android/repository/build-tools_r29.0.3-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "813f8c35f016cef83e5b2b742229a3634d4658d3",
            "size": 55201638,
            "url": "https://dl.google.com/android/repository/build-tools_r29.0.3-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 29.0.3",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/29.0.3",
        "revision": "29.0.3"
      },
      "30.0.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "5bdda303b7aba4073dd2aeb8003b6b0b57098021",
            "size": 68819159,
            "url": "https://dl.google.com/android/repository/build-tools_r30-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "80b06ce5fa4af2ed14db343a8131af658dda79a8",
            "size": 67373109,
            "url": "https://dl.google.com/android/repository/build-tools_r30-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "5276f337e4eb4d8e5fb82f846045610f8b8e3650",
            "size": 70027538,
            "url": "https://dl.google.com/android/repository/build-tools_r30-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 30",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/30.0.0",
        "revision": "30.0.0"
      },
      "30.0.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "dae27b63a53f3c71a23a2e9517d435f79ce7975b",
            "size": 52664463,
            "url": "https://dl.google.com/android/repository/build-tools_r30.0.1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "b62ccd6d6468a374b7c8e641c3751bc929a89397",
            "size": 51227882,
            "url": "https://dl.google.com/android/repository/build-tools_r30.0.1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "76197fec228ca9b69086d6dd8a16e4589982bdc6",
            "size": 53783332,
            "url": "https://dl.google.com/android/repository/build-tools_r30.0.1-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 30.0.1",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/30.0.1",
        "revision": "30.0.1"
      },
      "30.0.2": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "6b0166d1f4b0b3d496c0dde660145dfa7898095f",
            "size": 51227855,
            "url": "https://dl.google.com/android/repository/5a6ceea22103d8dec989aefcef309949c0c42f1d.build-tools_r30.0.2-macosx.zip"
          },
          {
            "os": "linux",
            "sha1": "363632ff8f7a198bf9fa94e3b9e0db6927bf373d",
            "size": 52664453,
            "url": "https://dl.google.com/android/repository/build-tools_r30.0.2-linux.zip"
          },
          {
            "os": "windows",
            "sha1": "b42b77e02b82f242432cd7ffff5cbb92f6888ca7",
            "size": 53783318,
            "url": "https://dl.google.com/android/repository/efbaa277338195608aa4e3dbd43927e97f60218c.build-tools_r30.0.2-windows.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 30.0.2",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/30.0.2",
        "revision": "30.0.2"
      },
      "30.0.3": {
        "archives": [
          {
            "os": "windows",
            "sha1": "fc165c721b8d2da55e6fede467526c81f562be7b",
            "size": 54254759,
            "url": "https://dl.google.com/android/repository/91936d4ee3ccc839f0addd53c9ebf087b1e39251.build-tools_r30.0.3-windows.zip"
          },
          {
            "os": "linux",
            "sha1": "2076ea81b5a2fc298ef7bf85d666f496b928c7f1",
            "size": 53134793,
            "url": "https://dl.google.com/android/repository/build-tools_r30.0.3-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "0807cd3f0dbc33c8be7f3d6faa263f6b14b502b7",
            "size": 51698282,
            "url": "https://dl.google.com/android/repository/f6d24b187cc6bd534c6c37604205171784ac5621.build-tools_r30.0.3-macosx.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 30.0.3",
        "license": "android-sdk-license",
        "name": "build-tools",
        "path": "build-tools/30.0.3",
        "revision": "30.0.3"
      },
      "31.0.0-rc3": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "e75dfb7a975809ba0ca0d25c2b82f7fd56444a4b",
            "size": 53224980,
            "url": "https://dl.google.com/android/repository/012061446cfd98341585d0d07401d0bd1a4c30f6.build-tools_r31-rc3-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "9d9ce209353c9046abe16285d58ef893c4b42221",
            "size": 57592553,
            "url": "https://dl.google.com/android/repository/41966dc138d44a3e3797b92fb68bf70552011d5d.build-tools_r31-rc3-windows.zip"
          },
          {
            "os": "linux",
            "sha1": "6859f11348d3984afbfcc74984802bd2e31cc0e2",
            "size": 54724181,
            "url": "https://dl.google.com/android/repository/build-tools_r31-rc3-linux.zip"
          }
        ],
        "displayName": "Android SDK Build-Tools 31-rc3",
        "license": "android-sdk-preview-license",
        "name": "build-tools",
        "path": "build-tools/31.0.0-rc3",
        "revision": "31.0.0-rc3"
      }
    },
    "cmake": {
      "3.10.2": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "f227a85cb53dcb927ac52a5a717f647c4a29bf3b",
            "size": 13447295,
            "url": "https://dl.google.com/android/repository/cmake-3.10.2-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "439e8799bf59f724f104bf62784b2985f1bfe561",
            "size": 14275684,
            "url": "https://dl.google.com/android/repository/cmake-3.10.2-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "0a75b9c5bf558dc31caad7241a44515064656486",
            "size": 11899659,
            "url": "https://dl.google.com/android/repository/cmake-3.10.2-windows-x86_64.zip"
          }
        ],
        "displayName": "CMake 3.10.2.4988404",
        "license": "android-sdk-license",
        "name": "cmake",
        "path": "cmake/3.10.2.4988404",
        "revision": "3.10.2"
      },
      "3.18.1": {
        "archives": [
          {
            "os": "windows",
            "sha1": "63723e9657a3ce1fc3ae078229c6199af80b76bd",
            "size": 14676950,
            "url": "https://dl.google.com/android/repository/7c386a739f915f5bd60051f2572c24782388e807.cmake-3.18.1-windows.zip"
          },
          {
            "os": "macosx",
            "sha1": "809fdc8e14c745c6df4e506cc2157910f50b9cd9",
            "size": 18505220,
            "url": "https://dl.google.com/android/repository/ba34c321f92f6e6fd696c8354c262c122f56abf8.cmake-3.18.1-darwin.zip"
          },
          {
            "os": "linux",
            "sha1": "9435bbe2120763871c75c37a365451b48c007fed",
            "size": 21005945,
            "url": "https://dl.google.com/android/repository/cmake-3.18.1-linux.zip"
          }
        ],
        "displayName": "CMake 3.18.1",
        "license": "android-sdk-license",
        "name": "cmake",
        "path": "cmake/3.18.1",
        "revision": "3.18.1"
      },
      "3.6.4111459": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "c9b02d630079783c6d67cb91488b622cfcd9765c",
            "size": 12295830,
            "url": "https://dl.google.com/android/repository/cmake-3.6.4111459-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "71c539b9c33f0943e9ad6251fea0b161c0b70782",
            "size": 13980243,
            "url": "https://dl.google.com/android/repository/cmake-3.6.4111459-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "4c4730dc3f399b2fa9ab701112d2c439368a59a5",
            "size": 10428915,
            "url": "https://dl.google.com/android/repository/cmake-3.6.4111459-windows-x86_64.zip"
          }
        ],
        "displayName": "CMake 3.6.4111459",
        "license": "android-sdk-license",
        "name": "cmake",
        "path": "cmake/3.6.4111459",
        "revision": "3.6.4111459"
      }
    },
    "cmdline-tools": {
      "1.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "6ffc5bd72db2c755f9b374ed829202262a6d8aaf",
            "size": 81680508,
            "url": "https://dl.google.com/android/repository/commandlinetools-linux-6200805_latest.zip"
          },
          {
            "os": "macosx",
            "sha1": "23f803c07e392bb769507c88b23c2c7868cc7a6f",
            "size": 81680498,
            "url": "https://dl.google.com/android/repository/commandlinetools-mac-6200805_latest.zip"
          },
          {
            "os": "windows",
            "sha1": "a863da8763de2febeb7429e7894fb65a092609db",
            "size": 81665410,
            "url": "https://dl.google.com/android/repository/commandlinetools-win-6200805_latest.zip"
          }
        ],
        "displayName": "Android SDK Command-line Tools",
        "license": "android-sdk-license",
        "name": "cmdline-tools",
        "path": "cmdline-tools/1.0",
        "revision": "1.0"
      },
      "2.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "14b2114c6eae9e10686a18138d2bb468c46f8e0c",
            "size": 86521858,
            "url": "https://dl.google.com/android/repository/commandlinetools-linux-6514223_latest.zip"
          },
          {
            "os": "macosx",
            "sha1": "d45816955198c4dfd652584f4c0f1b0e86efb1b7",
            "size": 86521848,
            "url": "https://dl.google.com/android/repository/commandlinetools-mac-6514223_latest.zip"
          },
          {
            "os": "windows",
            "sha1": "e11b418c1d2d28589e9194915be2561f1e1e7a95",
            "size": 86506760,
            "url": "https://dl.google.com/android/repository/commandlinetools-win-6514223_latest.zip"
          }
        ],
        "displayName": "Android SDK Command-line Tools",
        "license": "android-sdk-license",
        "name": "cmdline-tools",
        "path": "cmdline-tools/2.0",
        "revision": "2.0"
      },
      "2.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "9172381ff070ee2a416723c1989770cf4b0d1076",
            "size": 86532348,
            "url": "https://dl.google.com/android/repository/commandlinetools-linux-6609375_latest.zip"
          },
          {
            "os": "macosx",
            "sha1": "c0c6bb9f1970bfadeaac623dfabf22c3e56baaec",
            "size": 86532338,
            "url": "https://dl.google.com/android/repository/commandlinetools-mac-6609375_latest.zip"
          },
          {
            "os": "windows",
            "sha1": "e2e19c2ff584efa87ef0cfdd1987f92881323208",
            "size": 86517250,
            "url": "https://dl.google.com/android/repository/commandlinetools-win-6609375_latest.zip"
          }
        ],
        "displayName": "Android SDK Command-line Tools",
        "license": "android-sdk-license",
        "name": "cmdline-tools",
        "path": "cmdline-tools/2.1",
        "revision": "2.1"
      },
      "3.0": {
        "archives": [
          {
            "os": "linux",
            "sha1": "4f4417d53923c34891f1c05f302be2ed197d6844",
            "size": 87259900,
            "url": "https://dl.google.com/android/repository/commandlinetools-linux-6858069_latest.zip"
          },
          {
            "os": "macosx",
            "sha1": "4846d2aede9db06361a5f0885d03997a6199229a",
            "size": 87259890,
            "url": "https://dl.google.com/android/repository/commandlinetools-mac-6858069_latest.zip"
          },
          {
            "os": "windows",
            "sha1": "f0bf21e0a13dfcc48e7b0166f44dcff49912d2ee",
            "size": 87244802,
            "url": "https://dl.google.com/android/repository/commandlinetools-win-6858069_latest.zip"
          }
        ],
        "displayName": "Android SDK Command-line Tools",
        "license": "android-sdk-license",
        "name": "cmdline-tools",
        "path": "cmdline-tools/3.0",
        "revision": "3.0"
      },
      "4.0-rc01": {
        "archives": [
          {
            "os": "linux",
            "sha1": "98d3f2715f6bfbacef063d1376d7765fe5b93309",
            "size": 99514756,
            "url": "https://dl.google.com/android/repository/commandlinetools-linux-6987402_latest.zip"
          },
          {
            "os": "macosx",
            "sha1": "573d312a3fdc7700d9c395d647292d90b193d4ee",
            "size": 99514744,
            "url": "https://dl.google.com/android/repository/commandlinetools-mac-6987402_latest.zip"
          },
          {
            "os": "windows",
            "sha1": "72fae22d41fb8aa4f22e408e18c9d00f06050f7b",
            "size": 99496635,
            "url": "https://dl.google.com/android/repository/commandlinetools-win-6987402_latest.zip"
          }
        ],
        "displayName": "Android SDK Command-line Tools",
        "license": "android-sdk-preview-license",
        "name": "cmdline-tools",
        "path": "cmdline-tools/4.0-beta01",
        "revision": "4.0-rc01"
      },
      "5.0-rc01": {
        "archives": [
          {
            "os": "linux",
            "sha1": "f06b1642396ef1e431b990dbe386d5f1e3deabcc",
            "size": 102189958,
            "url": "https://dl.google.com/android/repository/commandlinetools-linux-7006259_latest.zip"
          },
          {
            "os": "macosx",
            "sha1": "0752424530724f76cb5a28de84d663e63739e6ee",
            "size": 102189946,
            "url": "https://dl.google.com/android/repository/commandlinetools-mac-7006259_latest.zip"
          },
          {
            "os": "windows",
            "sha1": "6f8e359dba91af39c046a791ea32e3ca5149a078",
            "size": 102171837,
            "url": "https://dl.google.com/android/repository/commandlinetools-win-7006259_latest.zip"
          }
        ],
        "displayName": "Android SDK Command-line Tools",
        "license": "android-sdk-preview-license",
        "name": "cmdline-tools",
        "path": "cmdline-tools/5.0-alpha01",
        "revision": "5.0-rc01"
      }
    },
    "emulator": {
      "30.5.5": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "90f8a9942253db75ab4d13f791377e9739a88617",
            "size": 300476485,
            "url": "https://dl.google.com/android/repository/emulator-darwin_x64-7285888.zip"
          },
          {
            "os": "linux",
            "sha1": "ccdee1aa99e4ec39f5a762d6912682ac248b92f0",
            "size": 272500365,
            "url": "https://dl.google.com/android/repository/emulator-linux_x64-7285888.zip"
          },
          {
            "os": "windows",
            "sha1": "84c3105ba1a3a94963e1f99b3f706d0231948fc9",
            "size": 324371999,
            "url": "https://dl.google.com/android/repository/emulator-windows_x64-7285888.zip"
          }
        ],
        "displayName": "Android Emulator",
        "license": "android-sdk-license",
        "name": "emulator",
        "path": "emulator",
        "revision": "30.5.5"
      },
      "30.6.3": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "66c9b788de49548d0faab052274f97b042f7241d",
            "size": 308984491,
            "url": "https://dl.google.com/android/repository/emulator-darwin_x64-7266284.zip"
          },
          {
            "os": "linux",
            "sha1": "ecd9b55fe4784b6c8683faa4b1d2c951b8929154",
            "size": 272243636,
            "url": "https://dl.google.com/android/repository/emulator-linux_x64-7266284.zip"
          },
          {
            "os": "windows",
            "sha1": "5736749dc46ad950ec84e8275dfde2606d3e8a80",
            "size": 324657514,
            "url": "https://dl.google.com/android/repository/emulator-windows_x64-7266284.zip"
          }
        ],
        "displayName": "Android Emulator",
        "license": "android-sdk-preview-license",
        "name": "emulator",
        "path": "emulator",
        "revision": "30.6.3"
      }
    },
    "extras": {
      "1.1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "18632007ecb843b4fc69babd521a9b061868534b",
            "size": 1307393,
            "url": "https://dl.google.com/android/repository/desktop-head-unit-linux_r01.1.zip"
          },
          {
            "os": "macosx",
            "sha1": "ccb64105888ba61ab06f20ad1ba97c71d440a421",
            "size": 2299061,
            "url": "https://dl.google.com/android/repository/desktop-head-unit-macosx_r01.1.zip"
          },
          {
            "os": "windows",
            "sha1": "f26d80a84020b40e24f8a99873dea6a9c7978f10",
            "size": 2615480,
            "url": "https://dl.google.com/android/repository/desktop-head-unit-windows_r01.1.zip"
          }
        ],
        "displayName": "Android Auto Desktop Head Unit Emulator",
        "license": "android-sdk-license",
        "name": "extras",
        "path": "extras/google/auto",
        "revision": "1.1"
      },
      "2.0-rc1": {
        "archives": [
          {
            "os": "linux",
            "sha1": "b480489e604371301da10731a793b234b01b8f42",
            "size": 4527281,
            "url": "https://dl.google.com/android/repository/desktop-head-unit-linux_r02.0.rc1.zip"
          },
          {
            "os": "macosx",
            "sha1": "3adaf99d06eaeeb31f7bdbb62ae841e740bfc156",
            "size": 5592023,
            "url": "https://dl.google.com/android/repository/desktop-head-unit-macosx_r02.0.rc1.zip"
          },
          {
            "os": "windows",
            "sha1": "e07788ed91d8e6dd3374f77da1cf78afb2664cc0",
            "size": 5703857,
            "url": "https://dl.google.com/android/repository/desktop-head-unit-windows_r02.0.rc1.zip"
          }
        ],
        "displayName": "Android Auto Desktop Head Unit Emulator",
        "license": "android-sdk-preview-license",
        "name": "extras",
        "path": "extras/google/auto",
        "revision": "2.0-rc1"
      }
    },
    "ndk": {
      "16.1.4479499": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "e51e615449b98c716cf912057e2682e75d55e2de",
            "size": 839630771,
            "url": "https://dl.google.com/android/repository/android-ndk-r16b-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "42aa43aae89a50d1c66c3f9fdecd676936da6128",
            "size": 852525873,
            "url": "https://dl.google.com/android/repository/android-ndk-r16b-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "f3f1909ed1052e98dda2c79d11c22f3da28daf25",
            "size": 723301086,
            "url": "https://dl.google.com/android/repository/android-ndk-r16b-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 16.1.4479499",
        "license": "android-sdk-license",
        "name": "ndk",
        "path": "ndk/16.1.4479499",
        "revision": "16.1.4479499"
      },
      "17.2.4988734": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "f97e3d7711497e3b4faf9e7b3fa0f0da90bb649c",
            "size": 675091485,
            "url": "https://dl.google.com/android/repository/android-ndk-r17c-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "12cacc70c3fd2f40574015631c00f41fb8a39048",
            "size": 709387703,
            "url": "https://dl.google.com/android/repository/android-ndk-r17c-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "3e3b8d1650f9d297d130be2b342db956003f5992",
            "size": 650626501,
            "url": "https://dl.google.com/android/repository/android-ndk-r17c-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 17.2.4988734",
        "license": "android-sdk-license",
        "name": "ndk",
        "path": "ndk/17.2.4988734",
        "revision": "17.2.4988734"
      },
      "18.1.5063045": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "98cb9909aa8c2dab32db188bbdc3ac6207e09440",
            "size": 542911996,
            "url": "https://dl.google.com/android/repository/android-ndk-r18b-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "500679655da3a86aecf67007e8ab230ea9b4dd7b",
            "size": 557038702,
            "url": "https://dl.google.com/android/repository/android-ndk-r18b-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "6b6d4138aaaad7166679fdfa4780e177f95cee6f",
            "size": 522489470,
            "url": "https://dl.google.com/android/repository/android-ndk-r18b-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 18.1.5063045",
        "license": "android-sdk-license",
        "name": "ndk",
        "path": "ndk/18.1.5063045",
        "revision": "18.1.5063045"
      },
      "19.0.5232133": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "86c1a962601b23b8a6d3d535c93b4b0bc4f29249",
            "size": 807592927,
            "url": "https://dl.google.com/android/repository/android-ndk-r19-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "f02ad84cb5b6e1ff3eea9e6168037c823408c8ac",
            "size": 823337344,
            "url": "https://dl.google.com/android/repository/android-ndk-r19-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "37906e8e79a9dddf6805325f706a072055e4136c",
            "size": 795986424,
            "url": "https://dl.google.com/android/repository/android-ndk-r19-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 19.0.5232133",
        "license": "android-sdk-license",
        "name": "ndk",
        "path": "ndk/19.0.5232133",
        "revision": "19.0.5232133"
      },
      "19.2.5345600": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "f46b8193109bba8a58e0461c1a48f4534051fb25",
            "size": 807630656,
            "url": "https://dl.google.com/android/repository/android-ndk-r19c-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "fd94d0be6017c6acbd193eb95e09cf4b6f61b834",
            "size": 823376982,
            "url": "https://dl.google.com/android/repository/android-ndk-r19c-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "c4cd8c0b6e7618ca0a871a5f24102e40c239f6a3",
            "size": 796051997,
            "url": "https://dl.google.com/android/repository/android-ndk-r19c-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 19.2.5345600",
        "license": "android-sdk-license",
        "name": "ndk",
        "path": "ndk/19.2.5345600",
        "revision": "19.2.5345600"
      },
      "20.0.5392854-rc2": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "cd94191ace6b31ec9af1cc370173e16934e1cb8b",
            "size": 840834121,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-beta2-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "8285ae2e24a7232fd0cbfb55e955c8586ef2ee02",
            "size": 857406412,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-beta2-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "c89022bd9a2c32b42a1b94e98bbd88ab4c4e350e",
            "size": 830099430,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-beta2-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 20.0.5392854",
        "license": "android-sdk-preview-license",
        "name": "ndk",
        "path": "ndk/20.0.5392854",
        "revision": "20.0.5392854-rc2"
      },
      "20.0.5471264-rc3": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "665a035cadb0dd03e6502ba25c18643f6e4ede24",
            "size": 843617071,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-beta3-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "674d8fb0e0df8e8be1c31fa321eb176548a19ba3",
            "size": 860198768,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-beta3-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "9375dc82cf576f4a255bf908dfc628d8ddee0d89",
            "size": 832889871,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-beta3-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 20.0.5471264",
        "license": "android-sdk-preview-license",
        "name": "ndk",
        "path": "ndk/20.0.5471264",
        "revision": "20.0.5471264-rc3"
      },
      "20.0.5594570": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "96d5f1c50452596912d1982439c514194b5751e6",
            "size": 843152912,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "8665fc84a1b1f0d6ab3b5fdd1e30200cc7b9adff",
            "size": 859737910,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "36e1dc77fad08ad2498fb94b13ad8caf26bbd9df",
            "size": 832429986,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 20.0.5594570",
        "license": "android-sdk-license",
        "name": "ndk",
        "path": "ndk/20.0.5594570",
        "revision": "20.0.5594570"
      },
      "20.1.5948944": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "b51290ab69cb89de1f0ba108702277bc333b38be",
            "size": 843201217,
            "url": "https://dl.google.com/android/repository/android-ndk-r20b-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "d903fdf077039ad9331fb6c3bee78aa46d45527b",
            "size": 859780564,
            "url": "https://dl.google.com/android/repository/android-ndk-r20b-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "ead0846608040b8344ad2bc9bc721b88cf13fb8d",
            "size": 832473103,
            "url": "https://dl.google.com/android/repository/android-ndk-r20b-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 20.1.5948944",
        "license": "android-sdk-license",
        "name": "ndk",
        "path": "ndk/20.1.5948944",
        "revision": "20.1.5948944"
      },
      "21.0.6011959-rc2": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "34a46c3867c9d87a80895c0b8a098256052536d2",
            "size": 958791657,
            "url": "https://dl.google.com/android/repository/android-ndk-r21-beta2-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "335f30302bee700a9a5fdfe3ae533a4963499c44",
            "size": 1043467643,
            "url": "https://dl.google.com/android/repository/android-ndk-r21-beta2-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "e5902e4f6c5b6f0354a2572a85f42f19c1a7b9d8",
            "size": 1057424857,
            "url": "https://dl.google.com/android/repository/android-ndk-r21-beta2-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 21.0.6011959",
        "license": "android-sdk-preview-license",
        "name": "ndk",
        "path": "ndk/21.0.6011959",
        "revision": "21.0.6011959-rc2"
      },
      "21.0.6113669": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "0d50636cc0e34ed3ba540d6d5818ea0cf10f16aa",
            "size": 958656601,
            "url": "https://dl.google.com/android/repository/android-ndk-r21-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "afc9c0b9faad222898ac8168c78ad4ccac8a1b5c",
            "size": 1043332542,
            "url": "https://dl.google.com/android/repository/android-ndk-r21-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "c61631eacbd40c30273b716a4e589c6877b85419",
            "size": 1057294207,
            "url": "https://dl.google.com/android/repository/android-ndk-r21-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 21.0.6113669",
        "license": "android-sdk-license",
        "name": "ndk",
        "path": "ndk/21.0.6113669",
        "revision": "21.0.6113669"
      },
      "21.1.6210238-rc1": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "971609f9a579ebbcb8d121a5d5aa0cba716b2d1f",
            "size": 987084422,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta1-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "cf06ed408663c11c8f4824f9370c7a900ec074dd",
            "size": 1071756532,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta1-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "a920ca1ab75733b510180cef23f3797ded40dbb7",
            "size": 1087478202,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta1-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 21.1.6210238",
        "license": "android-sdk-preview-license",
        "name": "ndk",
        "path": "ndk/21.1.6210238",
        "revision": "21.1.6210238-rc1"
      },
      "21.1.6273396-rc2": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "41110daad93e6a9a3662d7dd2fb233b21be3d27e",
            "size": 987112894,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta2-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "b9a6463ab72ad183c89e5316f0c5493f64b54966",
            "size": 1071784976,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta2-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "dc6dc614cbd94b345b66f85d3f867638593fb199",
            "size": 1087508597,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta2-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 21.1.6273396",
        "license": "android-sdk-preview-license",
        "name": "ndk",
        "path": "ndk/21.1.6273396",
        "revision": "21.1.6273396-rc2"
      },
      "21.1.6352462": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "e1de2f749c5c32ae991c3ccaabfcdf7688ee221f",
            "size": 1014473187,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "50250fcba479de477b45801e2699cca47f7e1267",
            "size": 1162377080,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "6809fac4a6e829f4bac64628fa9835d57bbd61a8",
            "size": 1079474640,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 21.1.6352462",
        "license": "android-sdk-license",
        "name": "ndk",
        "path": "ndk/21.1.6352462",
        "revision": "21.1.6352462"
      },
      "21.1.6363665-rc3": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "767f722c14dd27a22b17903e09b768407131129e",
            "size": 1042902819,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta3-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "29139085aa402d6b27d4394c30e797f814876d1e",
            "size": 1190809917,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta3-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "8ecb03c728b8dc814db30c8152c4436cb1536c8d",
            "size": 1109667800,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta3-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 21.1.6363665",
        "license": "android-sdk-preview-license",
        "name": "ndk",
        "path": "ndk/21.1.6363665",
        "revision": "21.1.6363665-rc3"
      },
      "21.2.6472646": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "c42a836f6697a4ef8b927813d5f7dd12e974cfba",
            "size": 1014322452,
            "url": "https://dl.google.com/android/repository/android-ndk-r21c-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "c81a5bcb4672a18d3647bf6898cd4dbcb978d0e8",
            "size": 1162375023,
            "url": "https://dl.google.com/android/repository/android-ndk-r21c-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "93563a1297a60b5da49a48f62340dbf0c878a5f3",
            "size": 1079490351,
            "url": "https://dl.google.com/android/repository/android-ndk-r21c-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 21.2.6472646",
        "license": "android-sdk-license",
        "name": "ndk",
        "path": "ndk/21.2.6472646",
        "revision": "21.2.6472646"
      },
      "21.3.6528147": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "ef06c9f9d7efd6f243eb3c05ac440562ae29ae12",
            "size": 1042615469,
            "url": "https://dl.google.com/android/repository/android-ndk-r21d-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "bcf4023eb8cb6976a4c7cff0a8a8f145f162bf4d",
            "size": 1190667841,
            "url": "https://dl.google.com/android/repository/android-ndk-r21d-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "99175ce1210258f2280568cd340e0666c69955c7",
            "size": 1109536102,
            "url": "https://dl.google.com/android/repository/android-ndk-r21d-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 21.3.6528147",
        "license": "android-sdk-license",
        "name": "ndk",
        "path": "ndk/21.3.6528147",
        "revision": "21.3.6528147"
      },
      "21.4.7075529": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "3f15c23a1c247ad17c7c271806848dbd40434738",
            "size": 1042617180,
            "url": "https://dl.google.com/android/repository/android-ndk-r21e-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "c3ebc83c96a4d7f539bd72c241b2be9dcd29bda9",
            "size": 1190670072,
            "url": "https://dl.google.com/android/repository/android-ndk-r21e-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "fc44fea8bb3f5a6789821f40f41dce2d2cd5dc30",
            "size": 1109665123,
            "url": "https://dl.google.com/android/repository/android-ndk-r21e-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 21.4.7075529",
        "license": "android-sdk-license",
        "name": "ndk",
        "path": "ndk/21.4.7075529",
        "revision": "21.4.7075529"
      },
      "22.0.6917172-rc1": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "0ff242f820663fe45773bca7a2df036004fc7c69",
            "size": 1047697781,
            "url": "https://dl.google.com/android/repository/android-ndk-r22-beta1-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "687f696f43b23e2623e7f7073bbd575d254f66f6",
            "size": 1146575022,
            "url": "https://dl.google.com/android/repository/android-ndk-r22-beta1-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "ef38999c0e3c96124acffab6971ad2054a433b91",
            "size": 1080588810,
            "url": "https://dl.google.com/android/repository/android-ndk-r22-beta1-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 22.0.6917172",
        "license": "android-sdk-preview-license",
        "name": "ndk",
        "path": "ndk/22.0.6917172",
        "revision": "22.0.6917172-rc1"
      },
      "22.0.7026061": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "9cf3816ed3e4308ff03bd5f69100b373bad12f13",
            "size": 1047577432,
            "url": "https://dl.google.com/android/repository/android-ndk-r22-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "82274313aba10da6177fd41868f56a0f9651dd81",
            "size": 1146450986,
            "url": "https://dl.google.com/android/repository/android-ndk-r22-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "c03f761caf1c6f5efbeb5ccfa573ea922cb955b3",
            "size": 1080471370,
            "url": "https://dl.google.com/android/repository/android-ndk-r22-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 22.0.7026061",
        "license": "android-sdk-license",
        "name": "ndk",
        "path": "ndk/22.0.7026061",
        "revision": "22.0.7026061"
      },
      "22.1.7171670": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "dc80e8a2cfcb28db74c1931d42c652e9d17ff2c3",
            "size": 1049337733,
            "url": "https://dl.google.com/android/repository/android-ndk-r22b-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "9ece64c7f19763dd67320d512794969930fce9dc",
            "size": 1148198368,
            "url": "https://dl.google.com/android/repository/android-ndk-r22b-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "96ba1a049303cf6bf3ee84cfd64d6bcd43486a50",
            "size": 1082301775,
            "url": "https://dl.google.com/android/repository/android-ndk-r22b-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 22.1.7171670",
        "license": "android-sdk-license",
        "name": "ndk",
        "path": "ndk/22.1.7171670",
        "revision": "22.1.7171670"
      },
      "23.0.7123448-rc1": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "708ebbceb719c43a3165503ea82fb107d823ad54",
            "size": 721278316,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta1-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "1340ed20f27fcb184ea814ae63e0f3cd75890342",
            "size": 804392699,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta1-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "c056900896129d3dd4eb953a53a8961d9853aa20",
            "size": 749304589,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta1-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 23.0.7123448",
        "license": "android-sdk-preview-license",
        "name": "ndk",
        "path": "ndk/23.0.7123448",
        "revision": "23.0.7123448-rc1"
      },
      "23.0.7196353-rc2": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "454fd0c1e8385896ad465d7cfd653e28fbf3523f",
            "size": 674507658,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta2-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "290e8c39bb9732ac8784855e1f22342eb488228e",
            "size": 705747711,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta2-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "00194ae44ce90f2052ab8e42f1a11a0db8d50c2a",
            "size": 747953762,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta2-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 23.0.7196353",
        "license": "android-sdk-preview-license",
        "name": "ndk",
        "path": "ndk/23.0.7196353",
        "revision": "23.0.7196353-rc2"
      },
      "23.0.7272597-rc3": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "3b977f0f8e0fa2d6777fae6b1d37aebfc075ab56",
            "size": 695243724,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta3-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "2298465ef13dab0c527b9cf6ef892b1ec6461fb4",
            "size": 724828157,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta3-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "8c10a51f50f4f12ccc839dcb4bd8107133024c2f",
            "size": 785932724,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta3-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK (Side by side) 23.0.7272597",
        "license": "android-sdk-preview-license",
        "name": "ndk",
        "path": "ndk/23.0.7272597",
        "revision": "23.0.7272597-rc3"
      }
    },
    "ndk-bundle": {
      "16.1.4479499": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "e51e615449b98c716cf912057e2682e75d55e2de",
            "size": 839630771,
            "url": "https://dl.google.com/android/repository/android-ndk-r16b-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "42aa43aae89a50d1c66c3f9fdecd676936da6128",
            "size": 852525873,
            "url": "https://dl.google.com/android/repository/android-ndk-r16b-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "f3f1909ed1052e98dda2c79d11c22f3da28daf25",
            "size": 723301086,
            "url": "https://dl.google.com/android/repository/android-ndk-r16b-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "16.1.4479499"
      },
      "17.2.4988734": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "f97e3d7711497e3b4faf9e7b3fa0f0da90bb649c",
            "size": 675091485,
            "url": "https://dl.google.com/android/repository/android-ndk-r17c-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "12cacc70c3fd2f40574015631c00f41fb8a39048",
            "size": 709387703,
            "url": "https://dl.google.com/android/repository/android-ndk-r17c-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "3e3b8d1650f9d297d130be2b342db956003f5992",
            "size": 650626501,
            "url": "https://dl.google.com/android/repository/android-ndk-r17c-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "17.2.4988734"
      },
      "18.1.5063045": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "98cb9909aa8c2dab32db188bbdc3ac6207e09440",
            "size": 542911996,
            "url": "https://dl.google.com/android/repository/android-ndk-r18b-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "500679655da3a86aecf67007e8ab230ea9b4dd7b",
            "size": 557038702,
            "url": "https://dl.google.com/android/repository/android-ndk-r18b-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "6b6d4138aaaad7166679fdfa4780e177f95cee6f",
            "size": 522489470,
            "url": "https://dl.google.com/android/repository/android-ndk-r18b-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "18.1.5063045"
      },
      "19.0.5232133": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "86c1a962601b23b8a6d3d535c93b4b0bc4f29249",
            "size": 807592927,
            "url": "https://dl.google.com/android/repository/android-ndk-r19-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "f02ad84cb5b6e1ff3eea9e6168037c823408c8ac",
            "size": 823337344,
            "url": "https://dl.google.com/android/repository/android-ndk-r19-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "37906e8e79a9dddf6805325f706a072055e4136c",
            "size": 795986424,
            "url": "https://dl.google.com/android/repository/android-ndk-r19-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "19.0.5232133"
      },
      "19.2.5345600": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "f46b8193109bba8a58e0461c1a48f4534051fb25",
            "size": 807630656,
            "url": "https://dl.google.com/android/repository/android-ndk-r19c-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "fd94d0be6017c6acbd193eb95e09cf4b6f61b834",
            "size": 823376982,
            "url": "https://dl.google.com/android/repository/android-ndk-r19c-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "c4cd8c0b6e7618ca0a871a5f24102e40c239f6a3",
            "size": 796051997,
            "url": "https://dl.google.com/android/repository/android-ndk-r19c-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "19.2.5345600"
      },
      "20.0.5392854-rc2": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "cd94191ace6b31ec9af1cc370173e16934e1cb8b",
            "size": 840834121,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-beta2-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "8285ae2e24a7232fd0cbfb55e955c8586ef2ee02",
            "size": 857406412,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-beta2-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "c89022bd9a2c32b42a1b94e98bbd88ab4c4e350e",
            "size": 830099430,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-beta2-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-preview-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "20.0.5392854-rc2"
      },
      "20.0.5471264-rc3": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "665a035cadb0dd03e6502ba25c18643f6e4ede24",
            "size": 843617071,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-beta3-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "674d8fb0e0df8e8be1c31fa321eb176548a19ba3",
            "size": 860198768,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-beta3-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "9375dc82cf576f4a255bf908dfc628d8ddee0d89",
            "size": 832889871,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-beta3-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-preview-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "20.0.5471264-rc3"
      },
      "20.0.5594570": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "96d5f1c50452596912d1982439c514194b5751e6",
            "size": 843152912,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "8665fc84a1b1f0d6ab3b5fdd1e30200cc7b9adff",
            "size": 859737910,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "36e1dc77fad08ad2498fb94b13ad8caf26bbd9df",
            "size": 832429986,
            "url": "https://dl.google.com/android/repository/android-ndk-r20-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "20.0.5594570"
      },
      "20.1.5948944": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "b51290ab69cb89de1f0ba108702277bc333b38be",
            "size": 843201217,
            "url": "https://dl.google.com/android/repository/android-ndk-r20b-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "d903fdf077039ad9331fb6c3bee78aa46d45527b",
            "size": 859780564,
            "url": "https://dl.google.com/android/repository/android-ndk-r20b-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "ead0846608040b8344ad2bc9bc721b88cf13fb8d",
            "size": 832473103,
            "url": "https://dl.google.com/android/repository/android-ndk-r20b-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "20.1.5948944"
      },
      "21.0.6011959-rc2": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "34a46c3867c9d87a80895c0b8a098256052536d2",
            "size": 958791657,
            "url": "https://dl.google.com/android/repository/android-ndk-r21-beta2-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "335f30302bee700a9a5fdfe3ae533a4963499c44",
            "size": 1043467643,
            "url": "https://dl.google.com/android/repository/android-ndk-r21-beta2-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "e5902e4f6c5b6f0354a2572a85f42f19c1a7b9d8",
            "size": 1057424857,
            "url": "https://dl.google.com/android/repository/android-ndk-r21-beta2-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-preview-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "21.0.6011959-rc2"
      },
      "21.0.6113669": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "0d50636cc0e34ed3ba540d6d5818ea0cf10f16aa",
            "size": 958656601,
            "url": "https://dl.google.com/android/repository/android-ndk-r21-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "afc9c0b9faad222898ac8168c78ad4ccac8a1b5c",
            "size": 1043332542,
            "url": "https://dl.google.com/android/repository/android-ndk-r21-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "c61631eacbd40c30273b716a4e589c6877b85419",
            "size": 1057294207,
            "url": "https://dl.google.com/android/repository/android-ndk-r21-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "21.0.6113669"
      },
      "21.1.6210238-rc1": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "971609f9a579ebbcb8d121a5d5aa0cba716b2d1f",
            "size": 987084422,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta1-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "cf06ed408663c11c8f4824f9370c7a900ec074dd",
            "size": 1071756532,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta1-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "a920ca1ab75733b510180cef23f3797ded40dbb7",
            "size": 1087478202,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta1-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-preview-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "21.1.6210238-rc1"
      },
      "21.1.6273396-rc2": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "41110daad93e6a9a3662d7dd2fb233b21be3d27e",
            "size": 987112894,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta2-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "b9a6463ab72ad183c89e5316f0c5493f64b54966",
            "size": 1071784976,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta2-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "dc6dc614cbd94b345b66f85d3f867638593fb199",
            "size": 1087508597,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta2-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-preview-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "21.1.6273396-rc2"
      },
      "21.1.6352462": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "e1de2f749c5c32ae991c3ccaabfcdf7688ee221f",
            "size": 1014473187,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "50250fcba479de477b45801e2699cca47f7e1267",
            "size": 1162377080,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "6809fac4a6e829f4bac64628fa9835d57bbd61a8",
            "size": 1079474640,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "21.1.6352462"
      },
      "21.1.6363665-rc3": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "767f722c14dd27a22b17903e09b768407131129e",
            "size": 1042902819,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta3-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "29139085aa402d6b27d4394c30e797f814876d1e",
            "size": 1190809917,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta3-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "8ecb03c728b8dc814db30c8152c4436cb1536c8d",
            "size": 1109667800,
            "url": "https://dl.google.com/android/repository/android-ndk-r21b-beta3-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-preview-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "21.1.6363665-rc3"
      },
      "21.2.6472646": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "c42a836f6697a4ef8b927813d5f7dd12e974cfba",
            "size": 1014322452,
            "url": "https://dl.google.com/android/repository/android-ndk-r21c-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "c81a5bcb4672a18d3647bf6898cd4dbcb978d0e8",
            "size": 1162375023,
            "url": "https://dl.google.com/android/repository/android-ndk-r21c-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "93563a1297a60b5da49a48f62340dbf0c878a5f3",
            "size": 1079490351,
            "url": "https://dl.google.com/android/repository/android-ndk-r21c-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "21.2.6472646"
      },
      "21.3.6528147": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "ef06c9f9d7efd6f243eb3c05ac440562ae29ae12",
            "size": 1042615469,
            "url": "https://dl.google.com/android/repository/android-ndk-r21d-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "bcf4023eb8cb6976a4c7cff0a8a8f145f162bf4d",
            "size": 1190667841,
            "url": "https://dl.google.com/android/repository/android-ndk-r21d-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "99175ce1210258f2280568cd340e0666c69955c7",
            "size": 1109536102,
            "url": "https://dl.google.com/android/repository/android-ndk-r21d-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "21.3.6528147"
      },
      "21.4.7075529": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "3f15c23a1c247ad17c7c271806848dbd40434738",
            "size": 1042617180,
            "url": "https://dl.google.com/android/repository/android-ndk-r21e-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "c3ebc83c96a4d7f539bd72c241b2be9dcd29bda9",
            "size": 1190670072,
            "url": "https://dl.google.com/android/repository/android-ndk-r21e-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "fc44fea8bb3f5a6789821f40f41dce2d2cd5dc30",
            "size": 1109665123,
            "url": "https://dl.google.com/android/repository/android-ndk-r21e-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "21.4.7075529"
      },
      "22.0.6917172-rc1": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "0ff242f820663fe45773bca7a2df036004fc7c69",
            "size": 1047697781,
            "url": "https://dl.google.com/android/repository/android-ndk-r22-beta1-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "687f696f43b23e2623e7f7073bbd575d254f66f6",
            "size": 1146575022,
            "url": "https://dl.google.com/android/repository/android-ndk-r22-beta1-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "ef38999c0e3c96124acffab6971ad2054a433b91",
            "size": 1080588810,
            "url": "https://dl.google.com/android/repository/android-ndk-r22-beta1-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-preview-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "22.0.6917172-rc1"
      },
      "22.0.7026061": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "9cf3816ed3e4308ff03bd5f69100b373bad12f13",
            "size": 1047577432,
            "url": "https://dl.google.com/android/repository/android-ndk-r22-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "82274313aba10da6177fd41868f56a0f9651dd81",
            "size": 1146450986,
            "url": "https://dl.google.com/android/repository/android-ndk-r22-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "c03f761caf1c6f5efbeb5ccfa573ea922cb955b3",
            "size": 1080471370,
            "url": "https://dl.google.com/android/repository/android-ndk-r22-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "22.0.7026061"
      },
      "22.1.7171670": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "dc80e8a2cfcb28db74c1931d42c652e9d17ff2c3",
            "size": 1049337733,
            "url": "https://dl.google.com/android/repository/android-ndk-r22b-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "9ece64c7f19763dd67320d512794969930fce9dc",
            "size": 1148198368,
            "url": "https://dl.google.com/android/repository/android-ndk-r22b-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "96ba1a049303cf6bf3ee84cfd64d6bcd43486a50",
            "size": 1082301775,
            "url": "https://dl.google.com/android/repository/android-ndk-r22b-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "22.1.7171670"
      },
      "23.0.7123448-rc1": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "708ebbceb719c43a3165503ea82fb107d823ad54",
            "size": 721278316,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta1-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "1340ed20f27fcb184ea814ae63e0f3cd75890342",
            "size": 804392699,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta1-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "c056900896129d3dd4eb953a53a8961d9853aa20",
            "size": 749304589,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta1-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-preview-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "23.0.7123448-rc1"
      },
      "23.0.7196353-rc2": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "454fd0c1e8385896ad465d7cfd653e28fbf3523f",
            "size": 674507658,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta2-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "290e8c39bb9732ac8784855e1f22342eb488228e",
            "size": 705747711,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta2-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "00194ae44ce90f2052ab8e42f1a11a0db8d50c2a",
            "size": 747953762,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta2-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-preview-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "23.0.7196353-rc2"
      },
      "23.0.7272597-rc3": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "3b977f0f8e0fa2d6777fae6b1d37aebfc075ab56",
            "size": 695243724,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta3-darwin-x86_64.zip"
          },
          {
            "os": "linux",
            "sha1": "2298465ef13dab0c527b9cf6ef892b1ec6461fb4",
            "size": 724828157,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta3-linux-x86_64.zip"
          },
          {
            "os": "windows",
            "sha1": "8c10a51f50f4f12ccc839dcb4bd8107133024c2f",
            "size": 785932724,
            "url": "https://dl.google.com/android/repository/android-ndk-r23-beta3-windows-x86_64.zip"
          }
        ],
        "displayName": "NDK",
        "license": "android-sdk-preview-license",
        "name": "ndk-bundle",
        "path": "ndk-bundle",
        "revision": "23.0.7272597-rc3"
      }
    },
    "patcher": {
      "1": {
        "archives": [
          {
            "os": "all",
            "sha1": "046699c5e2716ae11d77e0bad814f7f33fab261e",
            "size": 1827327,
            "url": "https://dl.google.com/android/repository/3534162-studio.sdk-patcher.zip"
          }
        ],
        "displayName": "SDK Patch Applier v4",
        "license": "android-sdk-license",
        "name": "patcher",
        "path": "patcher/v4",
        "revision": "1"
      }
    },
    "platform-tools": {
      "31.0.2": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "78937049851e1db90317612c6b831759f56fc86d",
            "size": 13829393,
            "url": "https://dl.google.com/android/repository/42b081e1e068bb936179551684cdcb30315e245c.platform-tools_r31.0.2-darwin.zip"
          },
          {
            "os": "linux",
            "sha1": "ff02a9d8c6fa9687e1207fc0c4b84033925d452d",
            "size": 13876419,
            "url": "https://dl.google.com/android/repository/platform-tools_r31.0.2-linux.zip"
          },
          {
            "os": "windows",
            "sha1": "9cc0f642a66706a978214395b85c8e8228c24f2f",
            "size": 12537668,
            "url": "https://dl.google.com/android/repository/platform-tools_r31.0.2-windows.zip"
          }
        ],
        "displayName": "Android SDK Platform-Tools",
        "license": "android-sdk-license",
        "name": "platform-tools",
        "path": "platform-tools",
        "revision": "31.0.2"
      }
    },
    "platforms": {
      "10": {
        "archives": [
          {
            "os": "all",
            "sha1": "887e37783ec32f541ea33c2c649dda648e8e6fb3",
            "size": 85470907,
            "url": "https://dl.google.com/android/repository/android-2.3.3_r02.zip"
          }
        ],
        "displayName": "Android SDK Platform 10",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-10",
        "revision": "10"
      },
      "11": {
        "archives": [
          {
            "os": "all",
            "sha1": "2c7d4bd13f276e76f6bbd87315fe27aba351dd37",
            "size": 104513908,
            "url": "https://dl.google.com/android/repository/android-3.0_r02.zip"
          }
        ],
        "displayName": "Android SDK Platform 11",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-11",
        "revision": "11"
      },
      "12": {
        "archives": [
          {
            "os": "all",
            "sha1": "4a50a6679cd95bb68bb5fc032e754cd7c5e2b1bf",
            "size": 106472351,
            "url": "https://dl.google.com/android/repository/android-3.1_r03.zip"
          }
        ],
        "displayName": "Android SDK Platform 12",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-12",
        "revision": "12"
      },
      "13": {
        "archives": [
          {
            "os": "all",
            "sha1": "6189a500a8c44ae73a439604363de93591163cd9",
            "size": 108426536,
            "url": "https://dl.google.com/android/repository/android-3.2_r01.zip"
          }
        ],
        "displayName": "Android SDK Platform 13",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-13",
        "revision": "13"
      },
      "14": {
        "archives": [
          {
            "os": "all",
            "sha1": "d4f1d8fbca25225b5f0e7a0adf0d39c3d6e60b3c",
            "size": 46038082,
            "url": "https://dl.google.com/android/repository/android-14_r04.zip"
          }
        ],
        "displayName": "Android SDK Platform 14",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-14",
        "revision": "14"
      },
      "15": {
        "archives": [
          {
            "os": "all",
            "sha1": "69ab4c443b37184b2883af1fd38cc20cbeffd0f3",
            "size": 44533475,
            "url": "https://dl.google.com/android/repository/android-15_r05.zip"
          }
        ],
        "displayName": "Android SDK Platform 15",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-15",
        "revision": "15"
      },
      "16": {
        "archives": [
          {
            "os": "all",
            "sha1": "12a5ce6235a76bc30f62c26bda1b680e336abd07",
            "size": 48128695,
            "url": "https://dl.google.com/android/repository/android-16_r05.zip"
          }
        ],
        "displayName": "Android SDK Platform 16",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-16",
        "revision": "16"
      },
      "17": {
        "archives": [
          {
            "os": "all",
            "sha1": "dbe14101c06e6cdb34e300393e64e64f8c92168a",
            "size": 57030216,
            "url": "https://dl.google.com/android/repository/android-17_r03.zip"
          }
        ],
        "displayName": "Android SDK Platform 17",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-17",
        "revision": "17"
      },
      "18": {
        "archives": [
          {
            "os": "all",
            "sha1": "e6b09b3505754cbbeb4a5622008b907262ee91cb",
            "size": 57771739,
            "url": "https://dl.google.com/android/repository/android-18_r03.zip"
          }
        ],
        "displayName": "Android SDK Platform 18",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-18",
        "revision": "18"
      },
      "19": {
        "archives": [
          {
            "os": "all",
            "sha1": "2ff20d89e68f2f5390981342e009db5a2d456aaa",
            "size": 63871092,
            "url": "https://dl.google.com/android/repository/android-19_r04.zip"
          }
        ],
        "displayName": "Android SDK Platform 19",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-19",
        "revision": "19"
      },
      "2": {
        "archives": [
          {
            "os": "linux",
            "sha1": "c054d25c9b4c6251fa49c2f9c54336998679d3fe",
            "size": 45476658,
            "url": "https://dl.google.com/android/repository/android-1.1_r1-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "e21dbcff45b7356657449ebb3c7e941be2bb5ebe",
            "size": 45584305,
            "url": "https://dl.google.com/android/repository/android-1.1_r1-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "a4060f29ed39fc929c302836d488998c53c3002e",
            "size": 46828615,
            "url": "https://dl.google.com/android/repository/android-1.1_r1-windows.zip"
          }
        ],
        "displayName": "Android SDK Platform 2",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-2",
        "revision": "2"
      },
      "20": {
        "archives": [
          {
            "os": "all",
            "sha1": "a9251f8a3f313ab05834a07a963000927637e01d",
            "size": 63567784,
            "url": "https://dl.google.com/android/repository/android-20_r02.zip"
          }
        ],
        "displayName": "Android SDK Platform 20",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-20",
        "revision": "20"
      },
      "21": {
        "archives": [
          {
            "os": "all",
            "sha1": "53536556059bb29ae82f414fd2e14bc335a4eb4c",
            "size": 65897960,
            "url": "https://dl.google.com/android/repository/android-21_r02.zip"
          }
        ],
        "displayName": "Android SDK Platform 21",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-21",
        "revision": "21"
      },
      "22": {
        "archives": [
          {
            "os": "all",
            "sha1": "5d1bd10fea962b216a0dece1247070164760a9fc",
            "size": 66852371,
            "url": "https://dl.google.com/android/repository/android-22_r02.zip"
          }
        ],
        "displayName": "Android SDK Platform 22",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-22",
        "revision": "22"
      },
      "23": {
        "archives": [
          {
            "os": "all",
            "sha1": "027fede3de6aa1649115bbd0bffff30ccd51c9a0",
            "size": 70433421,
            "url": "https://dl.google.com/android/repository/platform-23_r03.zip"
          }
        ],
        "displayName": "Android SDK Platform 23",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-23",
        "revision": "23"
      },
      "24": {
        "archives": [
          {
            "os": "all",
            "sha1": "8912da3d4bfe7a9f28f0e5ce92d3a8dc96342aee",
            "size": 82648154,
            "url": "https://dl.google.com/android/repository/platform-24_r02.zip"
          }
        ],
        "displayName": "Android SDK Platform 24",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-24",
        "revision": "24"
      },
      "25": {
        "archives": [
          {
            "os": "all",
            "sha1": "00c2c5765e8988504be10a1eb66ed71fcdbd7fe8",
            "size": 85424763,
            "url": "https://dl.google.com/android/repository/platform-25_r03.zip"
          }
        ],
        "displayName": "Android SDK Platform 25",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-25",
        "revision": "25"
      },
      "26": {
        "archives": [
          {
            "os": "all",
            "sha1": "e4ae5d7aa557a3c827135838ee400da8443ac4ef",
            "size": 63623734,
            "url": "https://dl.google.com/android/repository/platform-26_r02.zip"
          }
        ],
        "displayName": "Android SDK Platform 26",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-26",
        "revision": "26"
      },
      "27": {
        "archives": [
          {
            "os": "all",
            "sha1": "35f747e7e70b2d16e0e4246876be28d15ea1c353",
            "size": 65635348,
            "url": "https://dl.google.com/android/repository/platform-27_r03.zip"
          }
        ],
        "displayName": "Android SDK Platform 27",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-27",
        "revision": "27"
      },
      "28": {
        "archives": [
          {
            "os": "all",
            "sha1": "9a4e52b1d55bd2e24216b150aafae2503d3efba6",
            "size": 75565084,
            "url": "https://dl.google.com/android/repository/platform-28_r06.zip"
          }
        ],
        "displayName": "Android SDK Platform 28",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-28",
        "revision": "28"
      },
      "29": {
        "archives": [
          {
            "os": "all",
            "sha1": "9d8a7e0ffa5168dbca6c60355b9129c6c7572aff",
            "size": 78293913,
            "url": "https://dl.google.com/android/repository/platform-29_r05.zip"
          }
        ],
        "displayName": "Android SDK Platform 29",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-29",
        "revision": "29"
      },
      "3": {
        "archives": [
          {
            "os": "linux",
            "sha1": "5c134b7df5f4b8bd5b61ba93bdaebada8fa3468c",
            "size": 53348669,
            "url": "https://dl.google.com/android/repository/android-1.5_r04-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "d3a67c2369afa48b6c3c7624de5031c262018d1e",
            "size": 52440607,
            "url": "https://dl.google.com/android/repository/android-1.5_r04-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "5bb106d2e40d481edd337b0833093843e15fe49a",
            "size": 54624370,
            "url": "https://dl.google.com/android/repository/android-1.5_r04-windows.zip"
          }
        ],
        "displayName": "Android SDK Platform 3",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-3",
        "revision": "3"
      },
      "30": {
        "archives": [
          {
            "os": "all",
            "sha1": "e7c6280901dcfa511af098d67dd88c4dfcbc6ea2",
            "size": 52328361,
            "url": "https://dl.google.com/android/repository/platform-30_r03.zip"
          }
        ],
        "displayName": "Android SDK Platform 30",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-30",
        "revision": "30"
      },
      "4": {
        "archives": [
          {
            "os": "linux",
            "sha1": "483ed088e45bbdf3444baaf9250c8b02e5383cb0",
            "size": 63454485,
            "url": "https://dl.google.com/android/repository/android-1.6_r03-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "bdafad44f5df9f127979bdb21a1fdd87ee3cd625",
            "size": 62418496,
            "url": "https://dl.google.com/android/repository/android-1.6_r03-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "ce0b5e4ffaf12ca4fd07c2da71a8a1ab4a03dc22",
            "size": 64654625,
            "url": "https://dl.google.com/android/repository/android-1.6_r03-windows.zip"
          }
        ],
        "displayName": "Android SDK Platform 4",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-4",
        "revision": "4"
      },
      "5": {
        "archives": [
          {
            "os": "linux",
            "sha1": "be9be6a99ca32875c96ec7f91160ca9fce7e3c7d",
            "size": 75095268,
            "url": "https://dl.google.com/android/repository/android-2.0_r01-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "2a866d0870dbba18e0503cd41e5fae988a21b314",
            "size": 74956356,
            "url": "https://dl.google.com/android/repository/android-2.0_r01-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "aeb623217ff88b87216d6eb7dbc846ed53f68f57",
            "size": 76288040,
            "url": "https://dl.google.com/android/repository/android-2.0_r01-windows.zip"
          }
        ],
        "displayName": "Android SDK Platform 5",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-5",
        "revision": "5"
      },
      "6": {
        "archives": [
          {
            "os": "linux",
            "sha1": "ce2c971dce352aa28af06bda92a070116aa5ae1a",
            "size": 79192618,
            "url": "https://dl.google.com/android/repository/android-2.0.1_r01-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "c3096f80d75a6fc8cb38ef8a18aec920e53d42c0",
            "size": 79035527,
            "url": "https://dl.google.com/android/repository/android-2.0.1_r01-macosx.zip"
          },
          {
            "os": "windows",
            "sha1": "255781ebe4509d9707d0e77edda2815e2bc216e6",
            "size": 80385601,
            "url": "https://dl.google.com/android/repository/android-2.0.1_r01-windows.zip"
          }
        ],
        "displayName": "Android SDK Platform 6",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-6",
        "revision": "6"
      },
      "7": {
        "archives": [
          {
            "os": "all",
            "sha1": "5ce51b023ac19f8738500b1007a1da5de2349a1e",
            "size": 70142829,
            "url": "https://dl.google.com/android/repository/android-2.1_r03.zip"
          }
        ],
        "displayName": "Android SDK Platform 7",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-7",
        "revision": "7"
      },
      "8": {
        "archives": [
          {
            "os": "all",
            "sha1": "231262c63eefdff8fd0386e9ccfefeb27a8f9202",
            "size": 74652366,
            "url": "https://dl.google.com/android/repository/android-2.2_r03.zip"
          }
        ],
        "displayName": "Android SDK Platform 8",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-8",
        "revision": "8"
      },
      "9": {
        "archives": [
          {
            "os": "all",
            "sha1": "209f8a7a8b2cb093fce858b8b55fed3ba5206773",
            "size": 78732563,
            "url": "https://dl.google.com/android/repository/android-2.3.1_r02.zip"
          }
        ],
        "displayName": "Android SDK Platform 9",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-9",
        "revision": "9"
      },
      "S": {
        "archives": [
          {
            "os": "all",
            "sha1": "3aee3ad760dc7becf657d6421629fe360215f92e",
            "size": 56206479,
            "url": "https://dl.google.com/android/repository/platform-S_r03.zip"
          }
        ],
        "displayName": "Android SDK Platform S",
        "license": "android-sdk-license",
        "name": "platforms",
        "path": "platforms/android-S",
        "revision": "S"
      }
    },
    "skiaparser": {
      "2": {
        "archives": [
          {
            "os": "linux",
            "sha1": "2703a570224a5ced1f73eb3efbdb3192a1ecec81",
            "size": 6681896,
            "url": "https://dl.google.com/android/repository/skiaparser-7248848-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "ecf8794beccf578d4130bb9f7f2c7fa0c40c62c2",
            "size": 7340904,
            "url": "https://dl.google.com/android/repository/skiaparser-7248848-mac.zip"
          },
          {
            "os": "windows",
            "sha1": "84c28480ca057e48e8d2fed0ae8f52fc21aa7e61",
            "size": 6450856,
            "url": "https://dl.google.com/android/repository/skiaparser-7248848-win.zip"
          }
        ],
        "displayName": "Layout Inspector image server for API S",
        "license": "android-sdk-license",
        "name": "skiaparser",
        "path": "skiaparser/2",
        "revision": "2"
      },
      "6": {
        "archives": [
          {
            "os": "linux",
            "sha1": "78af2cd3e4168af80c16d7686536baa318e10cc4",
            "size": 6323164,
            "url": "https://dl.google.com/android/repository/skiaparser-7083912-linux.zip"
          },
          {
            "os": "macosx",
            "sha1": "73aa4e3b52177cf7d4cf956a74311e0097987bb4",
            "size": 6561072,
            "url": "https://dl.google.com/android/repository/skiaparser-7083912-mac.zip"
          },
          {
            "os": "windows",
            "sha1": "28dde025a70a0f4819cf195c1cb6e0e2b4bf4514",
            "size": 6059180,
            "url": "https://dl.google.com/android/repository/skiaparser-7083912-win.zip"
          }
        ],
        "displayName": "Layout Inspector image server for API 29-30",
        "license": "android-sdk-license",
        "name": "skiaparser",
        "path": "skiaparser/1",
        "revision": "6"
      }
    },
    "sources": {
      "14": {
        "archives": [
          {
            "os": "all",
            "sha1": "eaf4ed7dcac46e68516a1b4aa5b0d9e5a39a7555",
            "size": 16152383,
            "url": "https://dl.google.com/android/repository/sources-14_r01.zip"
          }
        ],
        "displayName": "Sources for Android 14",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-14",
        "revision": "14"
      },
      "15": {
        "archives": [
          {
            "os": "all",
            "sha1": "e5992a5747c9590783fbbdd700337bf0c9f6b1fa",
            "size": 16468746,
            "url": "https://dl.google.com/android/repository/sources-15_r02.zip"
          }
        ],
        "displayName": "Sources for Android 15",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-15",
        "revision": "15"
      },
      "16": {
        "archives": [
          {
            "os": "all",
            "sha1": "0f83c14ed333c45d962279ab5d6bc98a0269ef84",
            "size": 17876720,
            "url": "https://dl.google.com/android/repository/sources-16_r02.zip"
          }
        ],
        "displayName": "Sources for Android 16",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-16",
        "revision": "16"
      },
      "17": {
        "archives": [
          {
            "os": "all",
            "sha1": "6f1f18cd2d2b1852d7f6892df9cee3823349d43a",
            "size": 18976816,
            "url": "https://dl.google.com/android/repository/sources-17_r01.zip"
          }
        ],
        "displayName": "Sources for Android 17",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-17",
        "revision": "17"
      },
      "18": {
        "archives": [
          {
            "os": "all",
            "sha1": "8b49fdf7433f4881a2bfb559b5dd05d8ec65fb78",
            "size": 20226735,
            "url": "https://dl.google.com/android/repository/sources-18_r01.zip"
          }
        ],
        "displayName": "Sources for Android 18",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-18",
        "revision": "18"
      },
      "19": {
        "archives": [
          {
            "os": "all",
            "sha1": "433a1d043ef77561571250e94cb7a0ef24a202e7",
            "size": 21819439,
            "url": "https://dl.google.com/android/repository/sources-19_r02.zip"
          }
        ],
        "displayName": "Sources for Android 19",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-19",
        "revision": "19"
      },
      "20": {
        "archives": [
          {
            "os": "all",
            "sha1": "8da3e40f2625f9f7ef38b7e403f49f67226c0d76",
            "size": 23367603,
            "url": "https://dl.google.com/android/repository/sources-20_r01.zip"
          }
        ],
        "displayName": "Sources for Android 20",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-20",
        "revision": "20"
      },
      "21": {
        "archives": [
          {
            "os": "all",
            "sha1": "137a5044915d32bea297a8c1552684802bbc2e25",
            "size": 28274751,
            "url": "https://dl.google.com/android/repository/sources-21_r01.zip"
          }
        ],
        "displayName": "Sources for Android 21",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-21",
        "revision": "21"
      },
      "22": {
        "archives": [
          {
            "os": "all",
            "sha1": "98320e13976d11597a4a730a8d203ac9a03ed5a6",
            "size": 28861236,
            "url": "https://dl.google.com/android/repository/sources-22_r01.zip"
          }
        ],
        "displayName": "Sources for Android 22",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-22",
        "revision": "22"
      },
      "23": {
        "archives": [
          {
            "os": "all",
            "sha1": "b0f15da2762b42f543c5e364c2b15b198cc99cc2",
            "size": 31771965,
            "url": "https://dl.google.com/android/repository/sources-23_r01.zip"
          }
        ],
        "displayName": "Sources for Android 23",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-23",
        "revision": "23"
      },
      "24": {
        "archives": [
          {
            "os": "all",
            "sha1": "6b96115830a83d654479f32ce4b724ca9011148b",
            "size": 30270410,
            "url": "https://dl.google.com/android/repository/sources-24_r01.zip"
          }
        ],
        "displayName": "Sources for Android 24",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-24",
        "revision": "24"
      },
      "25": {
        "archives": [
          {
            "os": "all",
            "sha1": "bbc72efd1a9bad87cc507e308f0d29aad438c52c",
            "size": 30822685,
            "url": "https://dl.google.com/android/repository/sources-25_r01.zip"
          }
        ],
        "displayName": "Sources for Android 25",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-25",
        "revision": "25"
      },
      "26": {
        "archives": [
          {
            "os": "all",
            "sha1": "2af701ee3223d580409288540b1d06932fd8f9b9",
            "size": 35138547,
            "url": "https://dl.google.com/android/repository/sources-26_r01.zip"
          }
        ],
        "displayName": "Sources for Android 26",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-26",
        "revision": "26"
      },
      "27": {
        "archives": [
          {
            "os": "all",
            "sha1": "7b714670561d08f54751af42aca929867b806596",
            "size": 36997618,
            "url": "https://dl.google.com/android/repository/sources-27_r01.zip"
          }
        ],
        "displayName": "Sources for Android 27",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-27",
        "revision": "27"
      },
      "28": {
        "archives": [
          {
            "os": "all",
            "sha1": "5610e0c24235ee3fa343c899ddd551be30315255",
            "size": 42552241,
            "url": "https://dl.google.com/android/repository/sources-28_r01.zip"
          }
        ],
        "displayName": "Sources for Android 28",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-28",
        "revision": "28"
      },
      "29": {
        "archives": [
          {
            "os": "all",
            "sha1": "d0ad249e152b3a8fe3cb7c4a329453a048be29e4",
            "size": 39477018,
            "url": "https://dl.google.com/android/repository/sources-29_r01.zip"
          }
        ],
        "displayName": "Sources for Android 29",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-29",
        "revision": "29"
      },
      "30": {
        "archives": [
          {
            "os": "all",
            "sha1": "e4c000fb3afb32380609ddcad91f5d6495eeccb1",
            "size": 43263073,
            "url": "https://dl.google.com/android/repository/sources-30_r01.zip"
          }
        ],
        "displayName": "Sources for Android 30",
        "license": "android-sdk-license",
        "name": "sources",
        "path": "sources/android-30",
        "revision": "30"
      }
    },
    "tools": {
      "26.1.1": {
        "archives": [
          {
            "os": "macosx",
            "sha1": "ed85ea7b59bc3483ce0af4c198523ba044e083ad",
            "size": 103022432,
            "url": "https://dl.google.com/android/repository/sdk-tools-darwin-4333796.zip"
          },
          {
            "os": "linux",
            "sha1": "8c7c28554a32318461802c1291d76fccfafde054",
            "size": 154582459,
            "url": "https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip"
          },
          {
            "os": "windows",
            "sha1": "aa298b5346ee0d63940d13609fe6bec621384510",
            "size": 156136858,
            "url": "https://dl.google.com/android/repository/sdk-tools-windows-4333796.zip"
          }
        ],
        "displayName": "Android SDK Tools",
        "license": "android-sdk-license",
        "name": "tools",
        "path": "tools",
        "revision": "26.1.1"
      }
    }
  }
}