summary refs log tree commit diff
path: root/pkgs/development/mobile/androidenv/addon.xml
blob: 68792038d0002ea1cb5e994a192ade0ecb57a6dc (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
<?xml version="1.0" ?>
<sdk:sdk-addon xmlns:sdk="http://schemas.android.com/sdk/android/addon/7" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
	<!--Generated on 2018-09-27 12:07:52.862255 with ADRT.-->
	<sdk:license id="android-sdk-license" type="text">Terms and Conditions

This is the Android Software Development Kit License Agreement

1. Introduction

1.1 The Android Software Development Kit (referred to in the License Agreement as the &quot;SDK&quot; 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.

1.2 &quot;Android&quot; 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.

1.3 A &quot;compatible implementation&quot; 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).

1.4 &quot;Google&quot; means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.


2. Accepting the License Agreement

2.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.

2.2 By clicking to accept, you hereby agree to the terms of the License Agreement.

2.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.

2.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.


3. SDK License from Google

3.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.

3.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.

3.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. &quot;Intellectual Property Rights&quot; 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.

3.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.

3.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.

3.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.

3.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.

3.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.


4. Use of the SDK by You

4.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.

4.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).

4.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.

4.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.

4.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.

4.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.

5. Your Developer Credentials

5.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.

6. Privacy and Information

6.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.

6.2 The data collected is examined in the aggregate to improve the SDK and is maintained in accordance with Google's Privacy Policy.


7. Third Party Applications

7.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.

7.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.

7.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.


8. Using Android APIs

8.1 Google Data APIs

8.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.

8.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.


9. Terminating the License Agreement

9.1 The License Agreement will continue to apply until terminated by either you or Google as set out below.

9.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.

9.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.

9.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.


10. DISCLAIMER OF WARRANTIES

10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE SDK IS AT YOUR SOLE RISK AND THAT THE SDK IS PROVIDED &quot;AS IS&quot; AND &quot;AS AVAILABLE&quot; WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.

10.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.

10.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.


11. LIMITATION OF LIABILITY

11.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.


12. Indemnification

12.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.


13. Changes to the License Agreement

13.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.


14. General Legal Terms

14.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.

14.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.

14.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.

14.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.

14.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.

14.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.

14.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.


November 20, 2015</sdk:license>
	<sdk:license id="android-sdk-preview-license" type="text">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.

This is the Android SDK Preview License Agreement (the &quot;License Agreement&quot;).

1. Introduction

1.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.

1.2 &quot;Android&quot; 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.

1.3 &quot;Google&quot; means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.

2. Accepting the License Agreement

2.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.

2.2 By clicking to accept and/or using the Preview, you hereby agree to the terms of the License Agreement.

2.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.

2.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.

3. Preview License from Google

3.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.

3.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. &quot;Intellectual Property Rights&quot; 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.

3.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.

3.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.

3.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.

3.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.

3.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.

3.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.

4. Use of the Preview by You

4.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.

4.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).

4.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.

4.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.

4.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.

4.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.

4.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.

5. Your Developer Credentials

5.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.

6. Privacy and Information

6.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.

6.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/.

7. Third Party Applications

7.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.

7.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.

7.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.

8. Using Google APIs

8.1 Google APIs

8.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.

8.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.

9. Terminating the License Agreement

9.1 the License Agreement will continue to apply until terminated by either you or Google as set out below.

9.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.

9.3 Google may at any time, terminate the License Agreement, with or without cause, upon notice to you.

9.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.

9.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.

10. DISCLAIMERS

10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE PREVIEW IS AT YOUR SOLE RISK AND THAT THE PREVIEW IS PROVIDED &quot;AS IS&quot; AND &quot;AS AVAILABLE&quot; WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.

10.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.

10.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.

11. LIMITATION OF LIABILITY

11.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.

12. Indemnification

12.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.

13. Changes to the License Agreement

13.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.

14. General Legal Terms

14.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.

14.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.

14.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.

14.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.

14.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.

14.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.

14.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.

June 2014.</sdk:license>
	<sdk:license id="android-googletv-license" type="text">Terms and Conditions

This is the Google TV Add-on for the Android Software Development Kit License Agreement.

1. Introduction

1.1 The Google TV Add-on for the Android Software Development Kit (referred to in this License Agreement as the &quot;Google TV Add-on&quot; 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.

1.2 &quot;Google&quot; means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.

2. Accepting this License Agreement

2.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.

2.2 You can accept this License Agreement by:

(A) clicking to accept or agree to this License Agreement, where this option is made available to you; or

(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.

2.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.

2.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.

3. Google TV Add-on License from Google

3.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.

3.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. &quot;Intellectual Property Rights&quot; 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.

3.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.

3.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.

3.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.

3.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.

3.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.

4. Use of the Google TV Add-on by You

4.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.

4.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).

4.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.

4.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.

4.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.

4.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.

5. Your Developer Credentials

5.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.

6. Privacy and Information

6.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.

6.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.

7. Third Party Applications for the Google TV Platform

7.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.

7.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.

7.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.

8. Using Google TV APIs

8.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

8.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.

8.3 Except as explicitly permitted in Section 3 (Google TV Add-on License from Google), you must:

(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;

(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

(c)  not create any commercial audience measurement tool or service using the Google TV API Content

9. Terminating this License Agreement

9.1 This License Agreement will continue to apply until terminated by either you or Google as set out below.

9.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.

9.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 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

(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.

9.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.

10. DISCLAIMER OF WARRANTIES

10.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 &quot;AS IS&quot; AND &quot;AS AVAILABLE&quot; WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.

10.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.

10.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.

11. LIMITATION OF LIABILITY

11.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.

12. Indemnification

12.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.

13. Changes to the License Agreement

13.1 Google may make changes to the License Agreement as it distributes new versions of the Google TV Add-on.

14. General Legal Terms

14.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.

14.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.

14.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.

14.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.

14.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.

14.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.

14.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.


August 15, 2011</sdk:license>
	<sdk:license id="google-gdk-license" type="text">This is a Developer Preview of the GDK that is subject to change.

Terms and Conditions

This is the Glass Development Kit License Agreement.

1. Introduction

1.1 The Glass Development Kit (referred to in this License Agreement as the &quot;GDK&quot; 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.

1.2 &quot;Glass&quot; means Glass devices and the Glass software stack for use on Glass devices.


1.3 &quot;Android&quot; 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.

1.4 &quot;Google&quot; means Google Inc., a Delaware corporation with principal place of business at 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States.

2. Accepting this License Agreement

2.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.

2.2 By clicking to accept, you hereby agree to the terms of this License Agreement.

2.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.

2.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.

3. GDK License from Google

3.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.

3.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. &quot;Intellectual Property Rights&quot; 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.

3.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.

3.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.

3.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.

3.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.

3.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.

3.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.


3.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.

4. Use of the GDK by You

4.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.

4.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).

4.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.

4.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.

4.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.

4.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.


4.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.

5. Your Developer Credentials

5.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.

6. Privacy and Information


6.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.

6.2 The data collected is examined in the aggregate to improve the GDK and is maintained in accordance with Google's Privacy Policy.

7. Third Party Applications

7.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.

7.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.

7.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.

8. Using Google APIs

8.1 Google APIs

8.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.

8.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.

9. Terminating this License Agreement

9.1 This License Agreement will continue to apply until terminated by either you or Google as set out below.

9.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.

9.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.

9.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.

10. DISCLAIMER OF WARRANTIES

10.1 YOU EXPRESSLY UNDERSTAND AND AGREE THAT YOUR USE OF THE GDK IS AT YOUR SOLE RISK AND THAT THE GDK IS PROVIDED &quot;AS IS&quot; AND &quot;AS AVAILABLE&quot; WITHOUT WARRANTY OF ANY KIND FROM GOOGLE.

10.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.

10.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.

11. LIMITATION OF LIABILITY

11.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.

12. Indemnification

12.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.

13. Changes to the License Agreement

13.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.

14. General Legal Terms

14.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.

14.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.

14.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.

14.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.

14.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.

14.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.

14.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.

November 19, 2013</sdk:license>
	<sdk:license id="intel-android-extra-license" type="text">Intel (R) Hardware Accelerated Execution Manager
End-User License Agreement

Copyright (c) 2012 Intel Corporation.
All rights reserved.

Redistribution. Redistribution and use in binary form, without modification, are permitted provided that the following conditions are met:

1.Redistributions must reproduce the above copyright notice and the following disclaimer in the  documentation and/or other materials provided with the distribution.

2.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.

3.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 (&quot;Utilize&quot;) 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.

DISCLAIMER.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &quot;AS IS&quot; 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.</sdk:license>
	<sdk:add-on>
		<!--Generated from bid:12617722, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>3</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Sat May 19 22:41:19 2018.-->
				<sdk:size>34908058</sdk:size>
				<sdk:checksum type="sha1">1f92abf3a76be66ae8032257fc7620acbd2b2e3a</sdk:checksum>
				<sdk:url>google_apis-3-r03.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>3</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:desc-url>http://developer.android.com/</sdk:desc-url>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:13752552, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>2</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Sun Jun  3 14:03:04 2018.-->
				<sdk:size>42435735</sdk:size>
				<sdk:checksum type="sha1">9b6e86d8568558de4d606a7debc4f6049608dbd0</sdk:checksum>
				<sdk:url>google_apis-4_r02.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>4</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:desc-url>http://developer.android.com/</sdk:desc-url>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:13245770, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>1</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Tue Jun  5 17:50:33 2018.-->
				<sdk:size>49123776</sdk:size>
				<sdk:checksum type="sha1">46eaeb56b645ee7ffa24ede8fa17f3df70db0503</sdk:checksum>
				<sdk:url>google_apis-5_r01.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>5</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:desc-url>http://developer.android.com/</sdk:desc-url>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:13752552, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>1</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Sun Jun 10 12:37:49 2018.-->
				<sdk:size>53382941</sdk:size>
				<sdk:checksum type="sha1">5ff545d96e031e09580a6cf55713015c7d4936b2</sdk:checksum>
				<sdk:url>google_apis-6_r01.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>6</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:desc-url>http://developer.android.com/</sdk:desc-url>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:14140606, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>1</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Wed May 30 22:32:20 2018.-->
				<sdk:size>53691339</sdk:size>
				<sdk:checksum type="sha1">2e7f91e0fe34fef7f58aeced973c6ae52361b5ac</sdk:checksum>
				<sdk:url>google_apis-7_r01.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>7</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:desc-url>http://developer.android.com/</sdk:desc-url>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:16286500, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>2</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Mon Jun 11 03:39:55 2018.-->
				<sdk:size>59505020</sdk:size>
				<sdk:checksum type="sha1">3079958e7ec87222cac1e6b27bc471b27bf2c352</sdk:checksum>
				<sdk:url>google_apis-8_r02.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>8</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:desc-url>http://developer.android.com/</sdk:desc-url>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:19092731, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>2</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Wed May 23 15:52:14 2018.-->
				<sdk:size>63401546</sdk:size>
				<sdk:checksum type="sha1">78664645a1e9accea4430814f8694291a7f1ea5d</sdk:checksum>
				<sdk:url>google_apis-9_r02.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>9</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:desc-url>http://developer.android.com/</sdk:desc-url>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:21121559, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>2</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Tue May 29 03:55:38 2018.-->
				<sdk:size>65781578</sdk:size>
				<sdk:checksum type="sha1">cc0711857c881fa7534f90cf8cc09b8fe985484d</sdk:checksum>
				<sdk:url>google_apis-10_r02.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>10</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:desc-url>http://developer.android.com/</sdk:desc-url>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.android.future.usb.accessory</sdk:name>
				<sdk:description>API for USB Accessories</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:19633933, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>1</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Thu Jun 14 15:13:30 2018.-->
				<sdk:size>83477179</sdk:size>
				<sdk:checksum type="sha1">5eab5e81addee9f3576d456d205208314b5146a5</sdk:checksum>
				<sdk:url>google_apis-11_r01.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>11</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:desc-url>http://developer.android.com/</sdk:desc-url>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:21121559, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>1</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Mon Jun 11 10:52:20 2018.-->
				<sdk:size>86099835</sdk:size>
				<sdk:checksum type="sha1">e9999f4fa978812174dfeceec0721c793a636e5d</sdk:checksum>
				<sdk:url>google_apis-12_r01.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>12</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:desc-url>http://developer.android.com/</sdk:desc-url>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.android.future.usb.accessory</sdk:name>
				<sdk:description>API for USB Accessories</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:22531000, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>1</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Sun May 27 03:09:43 2018.-->
				<sdk:size>88615525</sdk:size>
				<sdk:checksum type="sha1">3b153edd211c27dc736c893c658418a4f9041417</sdk:checksum>
				<sdk:url>google_apis-13_r01.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>13</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:desc-url>http://developer.android.com/</sdk:desc-url>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.android.future.usb.accessory</sdk:name>
				<sdk:description>API for USB Accessories</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:26085354, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>2</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Wed Jun 13 22:44:43 2018.-->
				<sdk:size>106533714</sdk:size>
				<sdk:checksum type="sha1">f8eb4d96ad0492b4c0db2d7e4f1a1a3836664d39</sdk:checksum>
				<sdk:url>google_apis-14_r02.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>14</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.android.future.usb.accessory</sdk:name>
				<sdk:description>API for USB Accessories</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:95160078, branch:perforce-->
		<sdk:revision>3</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Fri Jun 15 19:37:58 2018.-->
				<sdk:size>106624396</sdk:size>
				<sdk:checksum type="sha1">d0d2bf26805eb271693570a1aaec33e7dc3f45e9</sdk:checksum>
				<sdk:url>google_apis-15_r03.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>15</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.android.future.usb.accessory</sdk:name>
				<sdk:description>API for USB Accessories</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.google.android.media.effects</sdk:name>
				<sdk:description>Collection of video effects</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:95160078, branch:perforce-->
		<sdk:revision>4</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Sun Jun 10 20:07:39 2018.-->
				<sdk:size>127341982</sdk:size>
				<sdk:checksum type="sha1">ee6acf1b01020bfa8a8e24725dbc4478bee5e792</sdk:checksum>
				<sdk:url>google_apis-16_r04.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>16</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.android.future.usb.accessory</sdk:name>
				<sdk:description>API for USB Accessories</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.google.android.media.effects</sdk:name>
				<sdk:description>Collection of video effects</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:94805340, branch:perforce-->
		<sdk:revision>4</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Wed May 30 17:17:51 2018.-->
				<sdk:size>137231243</sdk:size>
				<sdk:checksum type="sha1">a076be0677f38df8ca5536b44dfb411a0c808c4f</sdk:checksum>
				<sdk:url>google_apis-17_r04.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>17</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.android.future.usb.accessory</sdk:name>
				<sdk:description>API for USB Accessories</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.google.android.media.effects</sdk:name>
				<sdk:description>Collection of video effects</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:94805340, branch:perforce-->
		<sdk:revision>4</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Sun May 27 23:13:56 2018.-->
				<sdk:size>143195183</sdk:size>
				<sdk:checksum type="sha1">6109603409debdd40854d4d4a92eaf8481462c8b</sdk:checksum>
				<sdk:url>google_apis-18_r04.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>18</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.android.future.usb.accessory</sdk:name>
				<sdk:description>API for USB Accessories</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.google.android.media.effects</sdk:name>
				<sdk:description>Collection of video effects</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:2884604, branch:git_klp-emu-release-->
		<sdk:revision>20</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Sat Jun  2 14:21:02 2018.-->
				<sdk:size>147081</sdk:size>
				<sdk:checksum type="sha1">5b933abe830b2f25b4c0f171d45e9e0651e56311</sdk:checksum>
				<sdk:url>google_apis-19_r20.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>19</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.android.future.usb.accessory</sdk:name>
				<sdk:description>API for USB Accessories</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.google.android.media.effects</sdk:name>
				<sdk:description>Collection of video effects</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:3249234, branch:git_nyc-emu-release-->
		<sdk:revision>1</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Fri Jun  1 04:12:18 2018.-->
				<sdk:size>154865</sdk:size>
				<sdk:checksum type="sha1">31361c2868f27343ee917fbd259c1463821b6145</sdk:checksum>
				<sdk:url>google_apis-24_r1.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>24</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.android.future.usb.accessory</sdk:name>
				<sdk:description>API for USB Accessories</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.google.android.media.effects</sdk:name>
				<sdk:description>Collection of video effects</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:3756122, branch:git_nyc-mr1-emu-release-->
		<sdk:revision>1</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Tue Jun 12 20:09:06 2018.-->
				<sdk:size>154871</sdk:size>
				<sdk:checksum type="sha1">550e83eea9513ab11c44919ac6da54b36084a9f3</sdk:checksum>
				<sdk:url>google_apis-25_r1.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>23</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.android.future.usb.accessory</sdk:name>
				<sdk:description>API for USB Accessories</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.google.android.media.effects</sdk:name>
				<sdk:description>Collection of video effects</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:77907680, branch:perforce-->
		<sdk:revision>1</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Mon Jun 11 05:08:59 2018.-->
				<sdk:size>179499</sdk:size>
				<sdk:checksum type="sha1">66a754efb24e9bb07cc51648426443c7586c9d4a</sdk:checksum>
				<sdk:url>google_apis-21_r01.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>21</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.android.future.usb.accessory</sdk:name>
				<sdk:description>API for USB Accessories</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.google.android.media.effects</sdk:name>
				<sdk:description>Collection of video effects</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:87569863, branch:perforce-->
		<sdk:revision>1</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Fri Jun 15 06:11:24 2018.-->
				<sdk:size>179259</sdk:size>
				<sdk:checksum type="sha1">5def0f42160cba8acff51b9c0c7e8be313de84f5</sdk:checksum>
				<sdk:url>google_apis-22_r01.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>22</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.android.future.usb.accessory</sdk:name>
				<sdk:description>API for USB Accessories</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.google.android.media.effects</sdk:name>
				<sdk:description>Collection of video effects</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:100722913, branch:perforce-->
		<sdk:revision>1</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Sun Jun 10 08:57:09 2018.-->
				<sdk:size>179900</sdk:size>
				<sdk:checksum type="sha1">04c5cc1a7c88967250ebba9561d81e24104167db</sdk:checksum>
				<sdk:url>google_apis-23_r01.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_apis</sdk:name-id>
		<sdk:name-display>Google APIs</sdk:name-display>
		<sdk:api-level>23</sdk:api-level>
		<sdk:description>Android + Google APIs</sdk:description>
		<sdk:libs>
			<sdk:lib>
				<sdk:name>com.google.android.maps</sdk:name>
				<sdk:description>API for Google Maps</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.android.future.usb.accessory</sdk:name>
				<sdk:description>API for USB Accessories</sdk:description>
			</sdk:lib>
			<sdk:lib>
				<sdk:name>com.google.android.media.effects</sdk:name>
				<sdk:description>Collection of video effects</sdk:description>
			</sdk:lib>
		</sdk:libs>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:24379226, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>2</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Sun May 27 03:16:19 2018.-->
				<sdk:size>78266751</sdk:size>
				<sdk:checksum type="sha1">92128a12e7e8b0fb5bac59153d7779b717e7b840</sdk:checksum>
				<sdk:url>google_tv-12_r02.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-googletv-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_tv_addon</sdk:name-id>
		<sdk:name-display>Google TV Addon</sdk:name-display>
		<sdk:api-level>12</sdk:api-level>
		<sdk:description></sdk:description>
		<sdk:desc-url>http://developer.android.com/</sdk:desc-url>
		<sdk:libs/>
	</sdk:add-on>
	<sdk:add-on>
		<!--Generated from bid:41196280, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>1</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Tue Jun 19 05:04:20 2018.-->
				<sdk:size>87721879</sdk:size>
				<sdk:checksum type="sha1">b73f7c66011ac8180b44aa4e83b8d78c66ea9a09</sdk:checksum>
				<sdk:url>google_tv-13_r01.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-googletv-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:name-id>google_tv_addon</sdk:name-id>
		<sdk:name-display>Google TV Addon</sdk:name-display>
		<sdk:api-level>13</sdk:api-level>
		<sdk:description></sdk:description>
		<sdk:desc-url>http://developer.android.com/</sdk:desc-url>
		<sdk:libs/>
	</sdk:add-on>
	<sdk:extra>
		<!--Generated from bid:3841166, branch:git_nyc-support-release-->
		<sdk:revision>
			<sdk:major>47</sdk:major>
			<sdk:minor>0</sdk:minor>
			<sdk:micro>0</sdk:micro>
		</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Mon Jun 11 04:51:54 2018.-->
				<sdk:size>355529608</sdk:size>
				<sdk:checksum type="sha1">a0d22beacc106a6977321f2b07d692ce4979e96a</sdk:checksum>
				<sdk:url>android_m2repository_r47.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>android</sdk:vendor-id>
		<sdk:vendor-display>Android</sdk:vendor-display>
		<sdk:description>Local Maven repository for Support Libraries</sdk:description>
		<sdk:name-display>Android Support Repository</sdk:name-display>
		<sdk:path>m2repository</sdk:path>
	</sdk:extra>
	<sdk:extra>
		<!--Generated from bid:167710051, branch:perforce-->
		<sdk:revision>
			<sdk:major>58</sdk:major>
		</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Mon Jun 11 11:10:27 2018.-->
				<sdk:size>215426029</sdk:size>
				<sdk:checksum type="sha1">05086add9e3a0eb1b67111108d7757a4337c3f10</sdk:checksum>
				<sdk:url>google_m2repository_gms_v11_3_rc05_wear_2_0_5.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:description>Local Maven repository for Support Libraries</sdk:description>
		<sdk:name-display>Google Repository</sdk:name-display>
		<sdk:path>m2repository</sdk:path>
	</sdk:extra>
	<sdk:extra>
		<!--Generated from bid:28113395, branch:perforce-->
		<sdk:revision>
			<sdk:major>1</sdk:major>
		</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Sun Jun 10 01:20:16 2018.-->
				<sdk:size>75109</sdk:size>
				<sdk:checksum type="sha1">355e8dc304a92a5616db235af8ee7bd554356254</sdk:checksum>
				<sdk:url>market_licensing-r02.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display></sdk:vendor-display>
		<sdk:description>Android Market Licensing client library</sdk:description>
		<sdk:desc-url>http://developer.android.com/guide/publishing/licensing.html</sdk:desc-url>
		<sdk:name-display>Google Play Licensing Library</sdk:name-display>
		<sdk:path>market_licensing</sdk:path>
	</sdk:extra>
	<sdk:extra>
		<!--Generated from bid:42096985, branch:perforce-->
		<sdk:revision>
			<sdk:major>1</sdk:major>
		</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Sun Jun 17 19:31:02 2018.-->
				<sdk:size>110201</sdk:size>
				<sdk:checksum type="sha1">5305399dc1a56814e86b8459ce24871916f78b8c</sdk:checksum>
				<sdk:url>market_apk_expansion-r03.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:description>Android Market APK Expansion library</sdk:description>
		<sdk:desc-url>http://developer.android.com/guide/market/expansion-files.html</sdk:desc-url>
		<sdk:name-display>Google Play APK Expansion library</sdk:name-display>
		<sdk:path>market_apk_expansion</sdk:path>
	</sdk:extra>
	<sdk:extra>
		<!--Generated from bid:52571120, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>
			<sdk:major>12</sdk:major>
		</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Sun May 27 10:44:16 2018.-->
				<sdk:size>5265389</sdk:size>
				<sdk:checksum type="sha1">92558dbc380bba3d55d0ec181167fb05ce7c79d9</sdk:checksum>
				<sdk:url>google_play_services_3265130_r12.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:description>Google Play services client library and sample code</sdk:description>
		<sdk:desc-url>https://developers.google.com/android/google-play-services/index</sdk:desc-url>
		<sdk:name-display>Google Play services for Froyo</sdk:name-display>
		<sdk:path>google_play_services_froyo</sdk:path>
	</sdk:extra>
	<sdk:extra>
		<!--Generated from bid:189640690, branch:perforce-->
		<sdk:revision>
			<sdk:major>49</sdk:major>
		</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Mon Jun 11 08:08:54 2018.-->
				<sdk:size>15456884</sdk:size>
				<sdk:checksum type="sha1">f95bf19634e2ab0430923247fe2c50246432d2e9</sdk:checksum>
				<sdk:url>google_play_services_v16_1_rc09.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:description>Google Play services Javadocs and sample code</sdk:description>
		<sdk:desc-url>https://developers.google.com/android/google-play-services/index</sdk:desc-url>
		<sdk:name-display>Google Play services</sdk:name-display>
		<sdk:path>google_play_services</sdk:path>
	</sdk:extra>
	<sdk:extra>
		<!--Generated from bid:75820409, branch:perforce-->
		<sdk:revision>
			<sdk:major>11</sdk:major>
		</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Thu Jun  7 01:53:27 2018.-->
				<sdk:size>8682859</sdk:size>
				<sdk:checksum type="sha1">dc8a2ed2fbd7246d4caf9ab10ffe7749dc35d1cc</sdk:checksum>
				<sdk:url>usb_driver_r11-windows.zip</sdk:url>
				<sdk:host-os>windows</sdk:host-os>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:description>USB Driver for Windows, revision 11</sdk:description>
		<sdk:desc-url>http://developer.android.com/</sdk:desc-url>
		<sdk:name-display>Google USB Driver</sdk:name-display>
		<sdk:path>usb_driver</sdk:path>
	</sdk:extra>
	<sdk:extra>
		<!--Generated from bid:45484492, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>
			<sdk:major>11</sdk:major>
		</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Thu Jun  7 11:48:51 2018.-->
				<sdk:size>704512</sdk:size>
				<sdk:checksum type="sha1">0102859d9575baa0bf4fd5eb422af2ad0fe6cb82</sdk:checksum>
				<sdk:url>GoogleAdMobAdsSdkAndroid-6.4.1.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:description>AdMob Ads SDK</sdk:description>
		<sdk:desc-url>https://developers.google.com/mobile-ads-sdk/docs/</sdk:desc-url>
		<sdk:name-display>Google AdMob Ads SDK</sdk:name-display>
		<sdk:path>admob_ads_sdk</sdk:path>
	</sdk:extra>
	<sdk:extra>
		<!--Generated from bid:44867123, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>
			<sdk:major>3</sdk:major>
		</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Tue Jun  5 05:29:27 2018.-->
				<sdk:size>211432</sdk:size>
				<sdk:checksum type="sha1">dc14026bf0ce78315cb5dd00552607de0894de83</sdk:checksum>
				<sdk:url>GoogleAnalyticsAndroid_2.0beta5.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:description>Analytics App Tracking SDK</sdk:description>
		<sdk:desc-url>http://developers.google.com/analytics/devguides/collection/</sdk:desc-url>
		<sdk:name-display>Google Analytics App Tracking SDK</sdk:name-display>
		<sdk:path>analytics_sdk_v2</sdk:path>
	</sdk:extra>
	<sdk:extra>
		<!--Generated from bid:25118237, branch:perforce-->
		<sdk:revision>
			<sdk:major>2</sdk:major>
		</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Thu May 31 20:21:33 2018.-->
				<sdk:size>4055193</sdk:size>
				<sdk:checksum type="sha1">13f3a3b2670a5fc04a7342861644be9a01b07e38</sdk:checksum>
				<sdk:url>webdriver_r02.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:description></sdk:description>
		<sdk:desc-url>http://selenium.googlecode.com</sdk:desc-url>
		<sdk:name-display>Google Web Driver</sdk:name-display>
		<sdk:path>webdriver</sdk:path>
	</sdk:extra>
	<sdk:extra>
		<!--Generated from bid:32432700, branch:perforce-->
		<sdk:obsolete/>
		<sdk:revision>
			<sdk:major>3</sdk:major>
		</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Sun May 27 10:27:10 2018.-->
				<sdk:size>5901400</sdk:size>
				<sdk:checksum type="sha1">ad066fd0dc7fc99d8aadac09c65a3c2519fbc7bf</sdk:checksum>
				<sdk:url>gcm_r03.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:description>GCM library has been moved to Google Play Services (com.google.android.gms.gcm) and this standalone version is no longer supported</sdk:description>
		<sdk:desc-url>https://developers.google.com/android/gcm/index</sdk:desc-url>
		<sdk:name-display>Google Cloud Messaging for Android Library</sdk:name-display>
		<sdk:path>gcm</sdk:path>
	</sdk:extra>
	<sdk:extra>
		<!--Generated from bid:80165500, branch:perforce-->
		<sdk:revision>
			<sdk:major>1</sdk:major>
		</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Tue Jun  5 14:06:56 2018.-->
				<sdk:size>2167286</sdk:size>
				<sdk:checksum type="sha1">4fb5344e34e8faab4db18af07dace44c50db26a7</sdk:checksum>
				<sdk:url>simulator_r01.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:description>Android Auto API testing simulators</sdk:description>
		<sdk:desc-url>http://developer.android.com/auto</sdk:desc-url>
		<sdk:name-display>Android Auto API Simulators</sdk:name-display>
		<sdk:path>simulators</sdk:path>
	</sdk:extra>
	<sdk:extra>
		<!--Generated from bid:107062527, branch:perforce-->
		<sdk:revision>
			<sdk:major>1</sdk:major>
			<sdk:minor>1</sdk:minor>
		</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Sat Jun 16 20:44:31 2018.-->
				<sdk:size>1346009</sdk:size>
				<sdk:checksum type="sha1">202a6e1b3009a0eb815f8c672d2d5b3717de6169</sdk:checksum>
				<sdk:url>desktop-head-unit-linux_r01.1.zip</sdk:url>
				<sdk:host-os>linux</sdk:host-os>
			</sdk:archive>
			<sdk:archive>
				<!--Built on: Tue Jun 12 06:56:07 2018.-->
				<sdk:size>2375533</sdk:size>
				<sdk:checksum type="sha1">8179cbb3914493ebc5eb65b731cba061582f2e84</sdk:checksum>
				<sdk:url>desktop-head-unit-macosx_r01.1.zip</sdk:url>
				<sdk:host-os>macosx</sdk:host-os>
			</sdk:archive>
			<sdk:archive>
				<!--Built on: Tue Jun 12 13:47:09 2018.-->
				<sdk:size>2691901</sdk:size>
				<sdk:checksum type="sha1">99c4a7172d73673552119347bc24c58b47da177b</sdk:checksum>
				<sdk:url>desktop-head-unit-windows_r01.1.zip</sdk:url>
				<sdk:host-os>windows</sdk:host-os>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:description>Head unit emulator for developers targeting the Android Auto platform.</sdk:description>
		<sdk:desc-url>http://developer.android.com/tools/help/desktop-head-unit.html</sdk:desc-url>
		<sdk:name-display>Android Auto Desktop Head Unit emulator</sdk:name-display>
		<sdk:path>auto</sdk:path>
	</sdk:extra>
	<sdk:extra>
		<!--Generated from bid:214678223, branch:perforce-->
		<sdk:revision>
			<sdk:major>1</sdk:major>
			<sdk:minor>5</sdk:minor>
			<sdk:micro>0</sdk:micro>
		</sdk:revision>
		<sdk:archives>
			<sdk:archive>
				<!--Built on: Wed Sep 26 15:20:22 2018.-->
				<sdk:size>33351418</sdk:size>
				<sdk:checksum type="sha1">6c282b9c686e819fe7f5ac8f2249d2479acb63b4</sdk:checksum>
				<sdk:url>iasdk-1.5.0-1538000167.zip</sdk:url>
			</sdk:archive>
		</sdk:archives>
		<sdk:uses-license ref="android-sdk-license"/>
		<sdk:vendor-id>google</sdk:vendor-id>
		<sdk:vendor-display>Google Inc.</sdk:vendor-display>
		<sdk:description>Google Play Instant Development SDK</sdk:description>
		<sdk:desc-url>https://developer.android.com/topic/google-play-instant/</sdk:desc-url>
		<sdk:name-display>Google Play Instant Development SDK</sdk:name-display>
		<sdk:path>instantapps</sdk:path>
	</sdk:extra>
</sdk:sdk-addon>