`
自分の備忘録として掲載しておきます。
SDK Managerが取得するxmlファイルは2013/08/15時点では以下の2つです。
- http://dl-ssl.google.com/android/repository/addons_list-2.xml
- http://dl-ssl.google.com/android/repository/repository-8.xml
http://dl-ssl.google.com/android/repository/addons_list-2.xml
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 | This XML file does not appear to have any style information associated with it. The document tree is shown below. <!-- * Copyright (C) 2012 The Android Open Source Project * * Licensed under the Apache License, version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. --> < sdk:sdk-addons-list xmlns:sdk = "http://schemas.android.com/sdk/android/addons-list/2" > < sdk:addon-site > < sdk:url >addon.xml</ sdk:url > < sdk:name >Google Inc.</ sdk:name > </ sdk:addon-site > < sdk:addon-site > < sdk:url > https://dl-ssl.google.com/android/repository/extras/intel/addon.xml </ sdk:url > < sdk:name >Intel HAXM</ sdk:name > </ sdk:addon-site > < sdk:sys-img-site > < sdk:url > https://dl-ssl.google.com/android/repository/sys-img.xml </ sdk:url > < sdk:name >Android System Images</ sdk:name > </ sdk:sys-img-site > < sdk:sys-img-site > < sdk:url > https://dl-ssl.google.com/android/repository/sys-img/mips/sys-img.xml </ sdk:url > < sdk:name >Android MIPS System Images</ sdk:name > </ sdk:sys-img-site > < sdk:sys-img-site > < sdk:url > https://dl-ssl.google.com/android/repository/sys-img/x86/sys-img.xml </ sdk:url > < sdk:name >Android x86 System Images</ sdk:name > </ sdk:sys-img-site > </ sdk:sdk-addons-list > |
http://dl-ssl.google.com/android/repository/repository-8.xml
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 | This XML file does not appear to have any style information associated with it. The document tree is shown below. <!-- * Copyright (C) 2009 The Android Open Source Project * * Licensed under the Apache License, version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. --> < sdk:sdk-repository xmlns:sdk = "http://schemas.android.com/sdk/android/repository/8" xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" > < 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 this License Agreement as the "SDK" and specifically including the Android system files, packaged APIs, and Google APIs add-ons) is licensed to you subject to the terms of this License Agreement. This License Agreement forms a legally binding contract between you and Google in relation to your use of the SDK. 1.2 "Android" means the Android software stack for devices, as made available under the Android Open Source Project, which is located at the following URL: http://source.android.com/, as updated from time to time. 1.3 "Google" 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 SDK, you must first agree to this License Agreement. You may not use the SDK 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 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 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 SDK on behalf of your employer or other entity. 3. SDK 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 SDK solely to develop applications to run on the Android platform. 3.2 You agree that Google or third parties own all legal right, title and interest in and to the SDK, including any Intellectual Property Rights that subsist in the SDK. "Intellectual Property Rights" means any and all rights under patent law, copyright law, trade secret law, trademark law, and any and all other proprietary rights. Google reserves all rights not expressly granted to you. 3.3 You may not use the SDK 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 SDK or any part of the SDK; or (b) load any part of the SDK onto a mobile handset or any other hardware device except a personal computer, combine any part of the SDK with other software, or distribute any software or device incorporating a part of the SDK. 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 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 this 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 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 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 this 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) 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 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 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 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, this 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 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 SDK 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 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 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 SDK IS AT YOUR SOLE RISK AND THAT THE SDK IS PROVIDED "AS IS" AND "AS AVAILABLE" 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 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 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 This 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 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 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 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 13, 2012 </ sdk:license > <!-- PLATFORMS ........................ --> < sdk:platform > < sdk:version >1.1</ sdk:version > < sdk:api-level >2</ sdk:api-level > < sdk:revision >1</ sdk:revision > < sdk:description >Android SDK Platform 1.1_r1</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/android-1.1.html</ sdk:desc-url > < sdk:obsolete > < sdk:archives > < sdk:archive arch = "any" os = "windows" > < sdk:size >46828615</ sdk:size > < sdk:checksum type = "sha1" >a4060f29ed39fc929c302836d488998c53c3002e</ sdk:checksum > < sdk:url >android-1.1_r1-windows.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "macosx" > < sdk:size >45584305</ sdk:size > < sdk:checksum type = "sha1" >e21dbcff45b7356657449ebb3c7e941be2bb5ebe</ sdk:checksum > < sdk:url >android-1.1_r1-macosx.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "linux" > < sdk:size >45476658</ sdk:size > < sdk:checksum type = "sha1" >c054d25c9b4c6251fa49c2f9c54336998679d3fe</ sdk:checksum > < sdk:url >android-1.1_r1-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:layoutlib > < sdk:api >4</ sdk:api > </ sdk:layoutlib > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:obsolete ></ sdk:platform > <!-- Generated manually from earlier versions --> < sdk:platform > < sdk:version >1.5</ sdk:version > < sdk:api-level >3</ sdk:api-level > < sdk:revision >04</ sdk:revision > < sdk:min-tools-rev > < sdk:major >6</ sdk:major > </ sdk:min-tools-rev > < sdk:description >Android SDK Platform 1.5_r3</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/android-1.5.html</ sdk:desc-url > < sdk:archives > < sdk:archive arch = "any" os = "windows" > < sdk:size >54624370</ sdk:size > < sdk:checksum type = "sha1" >5bb106d2e40d481edd337b0833093843e15fe49a</ sdk:checksum > < sdk:url >android-1.5_r04-windows.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "macosx" > < sdk:size >52440607</ sdk:size > < sdk:checksum type = "sha1" >d3a67c2369afa48b6c3c7624de5031c262018d1e</ sdk:checksum > < sdk:url >android-1.5_r04-macosx.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "linux" > < sdk:size >53348669</ sdk:size > < sdk:checksum type = "sha1" >5c134b7df5f4b8bd5b61ba93bdaebada8fa3468c</ sdk:checksum > < sdk:url >android-1.5_r04-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:layoutlib > < sdk:api >4</ sdk:api > </ sdk:layoutlib > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:platform > < sdk:platform > < sdk:version >1.6</ sdk:version > < sdk:api-level >4</ sdk:api-level > < sdk:codename > < sdk:revision >03</ sdk:revision > < sdk:min-tools-rev > < sdk:major >6</ sdk:major > </ sdk:min-tools-rev > < sdk:description >Android SDK Platform 1.6_r2</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/android-1.6.html</ sdk:desc-url > < sdk:archives > < sdk:archive arch = "any" os = "linux" > < sdk:size >63454485</ sdk:size > < sdk:checksum type = "sha1" >483ed088e45bbdf3444baaf9250c8b02e5383cb0</ sdk:checksum > < sdk:url >android-1.6_r03-linux.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "macosx" > < sdk:size >62418496</ sdk:size > < sdk:checksum type = "sha1" >bdafad44f5df9f127979bdb21a1fdd87ee3cd625</ sdk:checksum > < sdk:url >android-1.6_r03-macosx.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "windows" > < sdk:size >64654625</ sdk:size > < sdk:checksum type = "sha1" >ce0b5e4ffaf12ca4fd07c2da71a8a1ab4a03dc22</ sdk:checksum > < sdk:url >android-1.6_r03-windows.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:layoutlib > < sdk:api >4</ sdk:api > </ sdk:layoutlib > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:codename ></ sdk:platform > <!-- Generated on Thu Oct 22 10:16:34 PDT 2009 using eclair-sdk 17704: Platform. Addon. Tools. Doc. --> < sdk:platform > < sdk:version >2.0</ sdk:version > < sdk:api-level >5</ sdk:api-level > < sdk:codename > < sdk:revision >01</ sdk:revision > < sdk:min-tools-rev > < sdk:major >3</ sdk:major > </ sdk:min-tools-rev > < sdk:description >Android SDK Platform 2.0, revision 1</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/android-2.0.html</ sdk:desc-url > < sdk:obsolete > < sdk:archives > < sdk:archive arch = "any" os = "linux" > < sdk:size >75095268</ sdk:size > < sdk:checksum type = "sha1" >be9be6a99ca32875c96ec7f91160ca9fce7e3c7d</ sdk:checksum > < sdk:url >android-2.0_r01-linux.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "macosx" > < sdk:size >74956356</ sdk:size > < sdk:checksum type = "sha1" >2a866d0870dbba18e0503cd41e5fae988a21b314</ sdk:checksum > < sdk:url >android-2.0_r01-macosx.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "windows" > < sdk:size >76288040</ sdk:size > < sdk:checksum type = "sha1" >aeb623217ff88b87216d6eb7dbc846ed53f68f57</ sdk:checksum > < sdk:url >android-2.0_r01-windows.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:layoutlib > < sdk:api >4</ sdk:api > </ sdk:layoutlib > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:obsolete ></ sdk:codename ></ sdk:platform > <!-- Generated on Mon Nov 23 14:08:02 PST 2009 using eclair-release 20723: Platform. Addon. --> < sdk:platform > < sdk:version >2.0.1</ sdk:version > < sdk:api-level >6</ sdk:api-level > < sdk:codename > < sdk:revision >01</ sdk:revision > < sdk:min-tools-rev > < sdk:major >4</ sdk:major > </ sdk:min-tools-rev > < sdk:description >Android SDK Platform 2.0.1_r1</ sdk:description > < sdk:desc-url > http://developer.android.com/sdk/android-2.0.1.html </ sdk:desc-url > < sdk:obsolete > < sdk:archives > < sdk:archive arch = "any" os = "linux" > < sdk:size >79192618</ sdk:size > < sdk:checksum type = "sha1" >ce2c971dce352aa28af06bda92a070116aa5ae1a</ sdk:checksum > < sdk:url >android-2.0.1_r01-linux.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "macosx" > < sdk:size >79035527</ sdk:size > < sdk:checksum type = "sha1" >c3096f80d75a6fc8cb38ef8a18aec920e53d42c0</ sdk:checksum > < sdk:url >android-2.0.1_r01-macosx.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "windows" > < sdk:size >80385601</ sdk:size > < sdk:checksum type = "sha1" >255781ebe4509d9707d0e77edda2815e2bc216e6</ sdk:checksum > < sdk:url >android-2.0.1_r01-windows.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:layoutlib > < sdk:api >4</ sdk:api > </ sdk:layoutlib > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:obsolete ></ sdk:codename ></ sdk:platform > <!-- Generated on Thu May 6 15:57:41 PDT 2010 using eclair 35983: Platform. --> < sdk:platform > < sdk:version >2.1</ sdk:version > < sdk:api-level >7</ sdk:api-level > < sdk:codename > < sdk:revision >03</ sdk:revision > < sdk:min-tools-rev > < sdk:major >8</ sdk:major > </ sdk:min-tools-rev > < sdk:description >Android SDK Platform 2.1_r3</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/</ sdk:desc-url > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >70142829</ sdk:size > < sdk:checksum type = "sha1" >5ce51b023ac19f8738500b1007a1da5de2349a1e</ sdk:checksum > < sdk:url >android-2.1_r03-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:layoutlib > < sdk:api >4</ sdk:api > </ sdk:layoutlib > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:codename ></ sdk:platform > <!-- Generated on Wed Jun 30 16:13:06 PDT 2010 using froyo-release 43546: Platform. Addon. --> < sdk:platform > < sdk:version >2.2</ sdk:version > < sdk:api-level >8</ sdk:api-level > < sdk:codename > < sdk:revision >03</ sdk:revision > < sdk:min-tools-rev > < sdk:major >8</ sdk:major > </ sdk:min-tools-rev > < sdk:description >Android SDK Platform 2.2_r3</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/</ sdk:desc-url > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >74652366</ sdk:size > < sdk:checksum type = "sha1" >231262c63eefdff8fd0386e9ccfefeb27a8f9202</ sdk:checksum > < sdk:url >android-2.2_r03-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:layoutlib > < sdk:api >4</ sdk:api > </ sdk:layoutlib > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:codename ></ sdk:platform > <!-- Generated on Thu Jan 20 09:40:59 PST 2011 using gingerbread-sdk-release 93351: Platform. --> < sdk:platform > < sdk:version >2.3.1</ sdk:version > < sdk:api-level >9</ sdk:api-level > < sdk:codename > < sdk:revision >02</ sdk:revision > < sdk:min-tools-rev > < sdk:major >8</ sdk:major > </ sdk:min-tools-rev > < sdk:description >Android SDK Platform 2.3.1_r2</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/</ sdk:desc-url > < sdk:obsolete > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >78732563</ sdk:size > < sdk:checksum type = "sha1" >209f8a7a8b2cb093fce858b8b55fed3ba5206773</ sdk:checksum > < sdk:url >android-2.3.1_r02-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:layoutlib > < sdk:api >4</ sdk:api > </ sdk:layoutlib > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:obsolete ></ sdk:codename ></ sdk:platform > <!-- Generated on Fri Feb 4 16:41:27 PST 2011 using gingerbread-release 101070: Platform. --> < sdk:platform > < sdk:version >2.3.3</ sdk:version > < sdk:api-level >10</ sdk:api-level > < sdk:codename > < sdk:revision >02</ sdk:revision > < sdk:min-tools-rev > < sdk:major >8</ sdk:major > </ sdk:min-tools-rev > < sdk:description >Android SDK Platform 2.3.3._r2</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/</ sdk:desc-url > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >85470907</ sdk:size > < sdk:checksum type = "sha1" >887e37783ec32f541ea33c2c649dda648e8e6fb3</ sdk:checksum > < sdk:url >android-2.3.3_r02-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:layoutlib > < sdk:api >4</ sdk:api > </ sdk:layoutlib > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:codename ></ sdk:platform > <!-- Generated on Thu Feb 17 08:41:10 PST 2011 using honeycomb 104254: Platform. --> < sdk:platform > < sdk:version >3.0</ sdk:version > < sdk:api-level >11</ sdk:api-level > < sdk:codename > < sdk:revision >02</ sdk:revision > < sdk:min-tools-rev > < sdk:major >10</ sdk:major > </ sdk:min-tools-rev > < sdk:description >Android SDK Platform 3.0, revision 2</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/</ sdk:desc-url > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >104513908</ sdk:size > < sdk:checksum type = "sha1" >2c7d4bd13f276e76f6bbd87315fe27aba351dd37</ sdk:checksum > < sdk:url >android-3.0_r02-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:layoutlib > < sdk:api >4</ sdk:api > </ sdk:layoutlib > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:codename ></ sdk:platform > <!-- Generated on Wed May 4 19:39:17 PDT 2011 using honeycomb-mr1 123685: Platform. r2: layoutlib.jar from 3.0 to fix issue with ADT 10. --> < sdk:platform > < sdk:version >3.1</ sdk:version > < sdk:api-level >12</ sdk:api-level > < sdk:codename > < sdk:revision >03</ sdk:revision > < sdk:min-tools-rev > < sdk:major >11</ sdk:major > </ sdk:min-tools-rev > < sdk:description >Android SDK Platform 3.1, revision 3</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/</ sdk:desc-url > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >106472351</ sdk:size > < sdk:checksum type = "sha1" >4a50a6679cd95bb68bb5fc032e754cd7c5e2b1bf</ sdk:checksum > < sdk:url >android-3.1_r03-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:layoutlib > < sdk:api >4</ sdk:api > </ sdk:layoutlib > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:codename ></ sdk:platform > <!-- Generated on Fri Jul 15 11:50:12 PDT 2011 using honeycomb-mr2-release 140714: Platform. --> < sdk:platform > < sdk:version >3.2</ sdk:version > < sdk:api-level >13</ sdk:api-level > < sdk:codename > < sdk:revision >01</ sdk:revision > < sdk:min-tools-rev > < sdk:major >12</ sdk:major > </ sdk:min-tools-rev > < sdk:description >Android SDK Platform 3.2, revision 1</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/</ sdk:desc-url > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >108426536</ sdk:size > < sdk:checksum type = "sha1" >6189a500a8c44ae73a439604363de93591163cd9</ sdk:checksum > < sdk:url >android-3.2_r01-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:layoutlib > < sdk:api >4</ sdk:api > </ sdk:layoutlib > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:codename ></ sdk:platform > < sdk:platform > <!-- Generated at Thu Dec 15 16:53:11 2011 from git_ics-mr0 @ 238991 --> < sdk:revision >3</ sdk:revision > < sdk:description >Android SDK Platform 4.0</ sdk:description > < sdk:version >4.0</ sdk:version > < sdk:api-level >14</ sdk:api-level > < sdk:layoutlib > < sdk:api >7</ sdk:api > < sdk:revision >1</ sdk:revision > </ sdk:layoutlib > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >45919570</ sdk:size > < sdk:checksum type = "sha1" >41ba83b51e886461628c41b1b4d47762e0688ed5</ sdk:checksum > < sdk:url >android-14_r03.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:platform > < sdk:platform > <!-- Generated at Fri Mar 16 11:22:43 2012 from ics-mr1 @ 291902 --> < sdk:revision >3</ sdk:revision > < sdk:description >Android SDK Platform 4.0.3</ sdk:description > < sdk:version >4.0.3</ sdk:version > < sdk:api-level >15</ sdk:api-level > < sdk:min-tools-rev > < sdk:major >15</ sdk:major > </ sdk:min-tools-rev > < sdk:layoutlib > < sdk:api >7</ sdk:api > < sdk:revision >1</ sdk:revision > </ sdk:layoutlib > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >44414679</ sdk:size > < sdk:checksum type = "sha1" >23da24610a8da51054c5391001c51ce43a778b97</ sdk:checksum > < sdk:url >android-15_r03.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:platform > < sdk:platform > <!-- Generated at Thu Dec 6 10:54:05 2012 from git_jb-dev @ 543062 --> < sdk:revision >4</ sdk:revision > < sdk:description >Android SDK Platform 4.1.2</ sdk:description > < sdk:version >4.1.2</ sdk:version > < sdk:api-level >16</ sdk:api-level > < sdk:min-tools-rev > < sdk:major >21</ sdk:major > </ sdk:min-tools-rev > < sdk:layoutlib > < sdk:api >9</ sdk:api > < sdk:revision >1</ sdk:revision > </ sdk:layoutlib > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >48005140</ sdk:size > < sdk:checksum type = "sha1" >90b9157b8b45f966be97e11a22fba4591b96c2ee</ sdk:checksum > < sdk:url >android-16_r04.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:platform > < sdk:platform > <!-- Generated at Wed Feb 13 11:27:09 2013 from git_jb-mr1.1-dev @ 576024 --> < sdk:revision >2</ sdk:revision > < sdk:description >Android SDK Platform 4.2.2</ sdk:description > < sdk:version >4.2.2</ sdk:version > < sdk:api-level >17</ sdk:api-level > < sdk:min-tools-rev > < sdk:major >21</ sdk:major > </ sdk:min-tools-rev > < sdk:layoutlib > < sdk:api >9</ sdk:api > < sdk:revision >1</ sdk:revision > </ sdk:layoutlib > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >48057484</ sdk:size > < sdk:checksum type = "sha1" >c442c32c1b702173ab0929a74486e4f86fe528ec</ sdk:checksum > < sdk:url >android-17_r02.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:platform > < sdk:platform > <!-- Generated at Tue Jul 23 17:16:25 2013 from git_jb-mr2-release @ 737497 --> < sdk:revision >1</ sdk:revision > < sdk:description >Android SDK Platform 4.3</ sdk:description > < sdk:version >4.3</ sdk:version > < sdk:api-level >18</ sdk:api-level > < sdk:min-tools-rev > < sdk:major >21</ sdk:major > </ sdk:min-tools-rev > < sdk:layoutlib > < sdk:api >9</ sdk:api > < sdk:revision >1</ sdk:revision > </ sdk:layoutlib > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >48752456</ sdk:size > < sdk:checksum type = "sha1" >c24de91d6f296cf453701aef281609779fffb379</ sdk:checksum > < sdk:url >android-18_r01.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:platform > <!-- SYSTEM IMAGES ........................ --> < sdk:system-image > <!-- Generated at Wed Dec 7 13:47:01 2011 from git_ics-mr0 @ 229537 --> < sdk:revision >2</ sdk:revision > < sdk:description >Android SDK Platform 4.0</ sdk:description > < sdk:api-level >14</ sdk:api-level > < sdk:abi >armeabi-v7a</ sdk:abi > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >99621822</ sdk:size > < sdk:checksum type = "sha1" >d8991b0c06b18d7d6ed4169d67460ee1add6661b</ sdk:checksum > < sdk:url >sysimg_armv7a-14_r02.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:system-image > < sdk:system-image > <!-- Generated at Fri Mar 30 10:43:23 2012 from ics-mr1 @ 302030 --> < sdk:revision >2</ sdk:revision > < sdk:description >Android SDK Platform 4.0.3</ sdk:description > < sdk:api-level >15</ sdk:api-level > < sdk:abi >armeabi-v7a</ sdk:abi > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >96227377</ sdk:size > < sdk:checksum type = "sha1" >1bf977d6cb4e0ad38dceac0c4863d1caa21f326e</ sdk:checksum > < sdk:url >sysimg_armv7a-15_r02.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:system-image > < sdk:system-image > <!-- Generated at Tue Oct 9 13:43:08 2012 from git_jb-dev @ 495790 --> < sdk:revision >3</ sdk:revision > < sdk:description >Android SDK Platform 4.1</ sdk:description > < sdk:api-level >16</ sdk:api-level > < sdk:abi >armeabi-v7a</ sdk:abi > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >112528368</ sdk:size > < sdk:checksum type = "sha1" >d1cddb23f17aad5821a089c403d4cddad2cf9ef7</ sdk:checksum > < sdk:url >sysimg_armv7a-16_r03.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:system-image > < sdk:system-image > <!-- Generated at Wed Feb 13 11:29:12 2013 from git_jb-mr1.1-dev @ 576024 --> < sdk:revision >2</ sdk:revision > < sdk:description >Android SDK Platform 4.2.2</ sdk:description > < sdk:api-level >17</ sdk:api-level > < sdk:abi >armeabi-v7a</ sdk:abi > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >116553808</ sdk:size > < sdk:checksum type = "sha1" >1c321cda1af793b84d47d1a8d15f85444d265e3c</ sdk:checksum > < sdk:url >sysimg_armv7a-17_r02.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:system-image > < sdk:system-image > <!-- Generated at Tue Jul 23 17:18:11 2013 from git_jb-mr2-release @ 737497 --> < sdk:revision >1</ sdk:revision > < sdk:description >Android SDK Platform 4.3</ sdk:description > < sdk:api-level >18</ sdk:api-level > < sdk:abi >armeabi-v7a</ sdk:abi > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >125597583</ sdk:size > < sdk:checksum type = "sha1" >5a9b8ac5b57dd0e3278f47deb5ee58e1db6f1f9e</ sdk:checksum > < sdk:url >sysimg_armv7a-18_r01.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:system-image > <!-- SAMPLES ........................ --> <!-- Generated on Mon Feb 22 13:39:38 PST 2010 using eclair 25887: Samples. --> < sdk:sample > < sdk:api-level >7</ sdk:api-level > < sdk:codename > < sdk:revision >01</ sdk:revision > < sdk:description >Android SDK Samples for Android API 7, revision 1</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/</ sdk:desc-url > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >7677831</ sdk:size > < sdk:checksum type = "sha1" >51e4907f60f248ede5c58b54ce7b6ae0b473e0ca</ sdk:checksum > < sdk:url >samples-2.1_r01-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:codename ></ sdk:sample > <!-- Generated on Tue May 11 19:15:20 PDT 2010 using froyo 36658: Samples. --> < sdk:sample > < sdk:api-level >8</ sdk:api-level > < sdk:codename > < sdk:revision >01</ sdk:revision > < sdk:description >Android SDK Samples for Android API 8, revision 1</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/</ sdk:desc-url > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >7969716</ sdk:size > < sdk:checksum type = "sha1" >d16d8bf2dd84cedf73b98b948d66461c8f19d6fb</ sdk:checksum > < sdk:url >samples-2.2_r01-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:codename ></ sdk:sample > <!-- Generated on Tue Nov 30 19:39:34 PST 2010 using gingerbread 79962: Samples. --> < sdk:sample > < sdk:api-level >9</ sdk:api-level > < sdk:codename > < sdk:revision >01</ sdk:revision > < sdk:description >Android SDK Samples for Android API 9, revision 1</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/</ sdk:desc-url > < sdk:obsolete > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >8516326</ sdk:size > < sdk:checksum type = "sha1" >36f7dd6c8b5dbb50b3cf3e3ac5209f3fe55db2aa</ sdk:checksum > < sdk:url >samples-2.3_r01-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:obsolete ></ sdk:codename ></ sdk:sample > <!-- Generated on Tue Feb 8 17:37:15 PST 2011 using gingerbread 102121: Samples. --> < sdk:sample > < sdk:api-level >10</ sdk:api-level > < sdk:codename > < sdk:revision >01</ sdk:revision > < sdk:description >Android SDK Samples for Android API 10, revision 1</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/</ sdk:desc-url > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >8539583</ sdk:size > < sdk:checksum type = "sha1" >93b0c3f3bdf5b07f1f115100b4954f0665297a0d</ sdk:checksum > < sdk:url >samples-2.3.3_r01-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:codename ></ sdk:sample > <!-- Generated on Thu Feb 17 08:45:49 PST 2011 using honeycomb 104254: Samples. --> < sdk:sample > < sdk:api-level >11</ sdk:api-level > < sdk:codename > < sdk:revision >01</ sdk:revision > < sdk:description >Android SDK Samples for Android API 11, revision 1</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/</ sdk:desc-url > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >11976920</ sdk:size > < sdk:checksum type = "sha1" >3749ace584631270268d65bb1d0ad61b0d691682</ sdk:checksum > < sdk:url >samples-3.0_r01-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:codename ></ sdk:sample > <!-- Generated on Wed May 4 19:49:56 PDT 2011 using honeycomb-mr1 123685: Samples. --> < sdk:sample > < sdk:api-level >12</ sdk:api-level > < sdk:codename > < sdk:revision >01</ sdk:revision > < sdk:description >Android SDK Samples for Android API 12, revision 1</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/</ sdk:desc-url > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >12150514</ sdk:size > < sdk:checksum type = "sha1" >df0ace37cbca73373fe94080f94c71557cac73a7</ sdk:checksum > < sdk:url >samples-3.1_r01-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:codename ></ sdk:sample > <!-- Generated on Fri Jul 15 11:52:24 PDT 2011 using honeycomb-mr2 142871: Samples. --> < sdk:sample > < sdk:api-level >13</ sdk:api-level > < sdk:codename > < sdk:revision >01</ sdk:revision > < sdk:description >Android SDK Samples for Android API 13, revision 1</ sdk:description > < sdk:desc-url >http://developer.android.com/sdk/</ sdk:desc-url > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >12193502</ sdk:size > < sdk:checksum type = "sha1" >078bcf1abc1cb8921f3fa482c252963a782bed60</ sdk:checksum > < sdk:url >samples-3.2_r01-linux.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:codename ></ sdk:sample > < sdk:sample > <!-- Generated at Wed Dec 7 13:48:27 2011 from git_ics-mr0 @ 234950 --> < sdk:revision >2</ sdk:revision > < sdk:api-level >14</ sdk:api-level > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >16253619</ sdk:size > < sdk:checksum type = "sha1" >1312c22ab0b650e26835cc3945d4ff8cea183416</ sdk:checksum > < sdk:url >samples-14_r02.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:sample > < sdk:sample > <!-- Generated at Fri Mar 16 11:27:52 2012 from ics-mr1 @ 291902 --> < sdk:revision >2</ sdk:revision > < sdk:api-level >15</ sdk:api-level > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >16366656</ sdk:size > < sdk:checksum type = "sha1" >042f368c5b09eca4d278264e6dbf9c12c5f73d1f</ sdk:checksum > < sdk:url >samples-15_r02.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:sample > < sdk:sample > <!-- Generated at Sun Jun 24 14:02:06 2012 from git_jb-release @ 391408 --> < sdk:revision >1</ sdk:revision > < sdk:api-level >16</ sdk:api-level > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >14729945</ sdk:size > < sdk:checksum type = "sha1" >dce3a2d41db50a381ef47ee8bddbe928520e685e</ sdk:checksum > < sdk:url >samples-16_r01.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:sample > < sdk:sample > <!-- Generated at Mon Nov 12 17:18:09 2012 from git_jb-mr1-dev @ 526865 --> < sdk:revision >1</ sdk:revision > < sdk:api-level >17</ sdk:api-level > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >14840030</ sdk:size > < sdk:checksum type = "sha1" >12d58cb26503610fc05bd7618c434cc6f983bc41</ sdk:checksum > < sdk:url >samples-17_r01.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:sample > < sdk:sample > <!-- Generated at Tue Jul 23 17:17:22 2013 from git_jb-mr2-ub-dev @ 751786 --> < sdk:revision >1</ sdk:revision > < sdk:api-level >18</ sdk:api-level > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >19897793</ sdk:size > < sdk:checksum type = "sha1" >73e879ce46c04a6e63ad1a9107018b4782945007</ sdk:checksum > < sdk:url >samples-18_r01.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:sample > <!-- PLATFORM-TOOLS ........................ --> < sdk:platform-tool > <!-- Generated at Mon Jul 29 15:56:24 2013 from git_jb-mr2-dev @ 754669 --> < sdk:revision > < sdk:major >18</ sdk:major > < sdk:minor >0</ sdk:minor > < sdk:micro >1</ sdk:micro > </ sdk:revision > < sdk:archives > < sdk:archive arch = "any" os = "windows" > < sdk:size >954769</ sdk:size > < sdk:checksum type = "sha1" >b40fea3ed72296dd42dd616a7abf536b8dace20d</ sdk:checksum > < sdk:url >platform-tools_r18.0.1-windows.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "linux" > < sdk:size >1011194</ sdk:size > < sdk:checksum type = "sha1" >cf9bdbbaa34da37b59724f914dad907c2c74a387</ sdk:checksum > < sdk:url >platform-tools_r18.0.1-linux.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "macosx" > < sdk:size >971087</ sdk:size > < sdk:checksum type = "sha1" >126325cbb55928c38acbb9c7bb5d9145d94fad56</ sdk:checksum > < sdk:url >platform-tools_r18.0.1-macosx.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:platform-tool > <!-- BUILD-TOOLS ........................ --> < sdk:build-tool > <!-- Generated at Tue May 14 16:40:25 2013 from git_jb-mr1.1-dev @ 673949 --> < sdk:revision > < sdk:major >17</ sdk:major > < sdk:minor >0</ sdk:minor > < sdk:micro >0</ sdk:micro > </ sdk:revision > < sdk:archives > < sdk:archive arch = "any" os = "windows" > < sdk:size >11004914</ sdk:size > < sdk:checksum type = "sha1" >899897d327b0bad492d3a40d3db4d96119c15bc0</ sdk:checksum > < sdk:url >build-tools_r17-windows.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "linux" > < sdk:size >11696007</ sdk:size > < sdk:checksum type = "sha1" >2c2872bc3806aabf16a12e3959c2183ddc866e6d</ sdk:checksum > < sdk:url >build-tools_r17-linux.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "macosx" > < sdk:size >12208114</ sdk:size > < sdk:checksum type = "sha1" >602ee709be9dbb8f179b1e4075148a57f9419930</ sdk:checksum > < sdk:url >build-tools_r17-macosx.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:build-tool > <!-- Build tools version 18.0.0 was broken for renderscript, so it has been removed --> < sdk:build-tool > <!-- Generated at Mon Jul 29 15:14:00 2013 from git_jb-mr2-dev @ 754669 --> < sdk:revision > < sdk:major >18</ sdk:major > < sdk:minor >0</ sdk:minor > < sdk:micro >1</ sdk:micro > </ sdk:revision > < sdk:archives > < sdk:archive arch = "any" os = "windows" > < sdk:size >15413527</ sdk:size > < sdk:checksum type = "sha1" >a6c2afd0b6289d589351956d2f5212b37014ca7d</ sdk:checksum > < sdk:url >build-tools_r18.0.1-windows.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "linux" > < sdk:size >16627330</ sdk:size > < sdk:checksum type = "sha1" >f11618492b0d2270c332325d45d752d3656a9640</ sdk:checksum > < sdk:url >build-tools_r18.0.1-linux.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "macosx" > < sdk:size >16633121</ sdk:size > < sdk:checksum type = "sha1" >d84f5692fb44d60fc53e5b2507cebf9f24626902</ sdk:checksum > < sdk:url >build-tools_r18.0.1-macosx.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:build-tool > <!-- TOOLS ........................ --> < sdk:tool > <!-- Generated at Mon Jul 29 16:02:44 2013 from git_tools_r22 @ 757759 --> < sdk:revision > < sdk:major >22</ sdk:major > < sdk:minor >0</ sdk:minor > < sdk:micro >5</ sdk:micro > </ sdk:revision > < sdk:min-platform-tools-rev > < sdk:major >18</ sdk:major > </ sdk:min-platform-tools-rev > < sdk:archives > < sdk:archive arch = "any" os = "windows" > < sdk:size >113389691</ sdk:size > < sdk:checksum type = "sha1" >a3f450706b5374122f0edb76a4488462ba5171ca</ sdk:checksum > < sdk:url >tools_r22.0.5-windows.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "linux" > < sdk:size >105904090</ sdk:size > < sdk:checksum type = "sha1" >06a3e1d66b9280cba49c7ba1893ea14beae072d2</ sdk:checksum > < sdk:url >tools_r22.0.5-linux.zip</ sdk:url > </ sdk:archive > < sdk:archive arch = "any" os = "macosx" > < sdk:size >77191184</ sdk:size > < sdk:checksum type = "sha1" >318947edef0ab46603eb7f4d21333ee4b4fa1ff3</ sdk:checksum > < sdk:url >tools_r22.0.5-macosx.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:tool > <!-- DOCS ........................ --> < sdk:doc > <!-- Generated at Tue Jul 23 17:15:55 2013 from git_jb-mr2-release @ 737497 --> < sdk:revision >1</ sdk:revision > < sdk:api-level >18</ sdk:api-level > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >142332266</ sdk:size > < sdk:checksum type = "sha1" >83632d157781d31f2a8e52acad5c4c5d0f307cba</ sdk:checksum > < sdk:url >docs-18_r01.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:doc > <!-- SOURCES ........................ --> < sdk:source > <!-- Generated at Wed Dec 7 13:48:11 2011 from git_ics-mr0 @ 234950 --> < sdk:revision >1</ sdk:revision > < sdk:api-level >14</ sdk:api-level > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >16152383</ sdk:size > < sdk:checksum type = "sha1" >eaf4ed7dcac46e68516a1b4aa5b0d9e5a39a7555</ sdk:checksum > < sdk:url >sources-14_r01.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:source > < sdk:source > <!-- Generated at Fri Mar 30 10:43:44 2012 from ics-mr1 @ 302030 --> < sdk:revision >2</ sdk:revision > < sdk:api-level >15</ sdk:api-level > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >16468746</ sdk:size > < sdk:checksum type = "sha1" >e5992a5747c9590783fbbdd700337bf0c9f6b1fa</ sdk:checksum > < sdk:url >sources-15_r02.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:source > < sdk:source > <!-- Generated at Thu Jul 19 18:39:42 2012 from git_jb-release @ 403059 --> < sdk:revision >2</ sdk:revision > < sdk:api-level >16</ sdk:api-level > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >17876720</ sdk:size > < sdk:checksum type = "sha1" >0f83c14ed333c45d962279ab5d6bc98a0269ef84</ sdk:checksum > < sdk:url >sources-16_r02.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:source > < sdk:source > <!-- Generated at Mon Nov 12 17:16:08 2012 from git_jb-mr1-dev @ 526865 --> < sdk:revision >1</ sdk:revision > < sdk:api-level >17</ sdk:api-level > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >18976816</ sdk:size > < sdk:checksum type = "sha1" >6f1f18cd2d2b1852d7f6892df9cee3823349d43a</ sdk:checksum > < sdk:url >sources-17_r01.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:source > < sdk:source > <!-- Generated at Tue Jul 23 17:18:30 2013 from git_jb-mr2-release @ 737497 --> < sdk:revision >1</ sdk:revision > < sdk:api-level >18</ sdk:api-level > < sdk:archives > < sdk:archive arch = "any" os = "any" > < sdk:size >20226735</ sdk:size > < sdk:checksum type = "sha1" >8b49fdf7433f4881a2bfb559b5dd05d8ec65fb78</ sdk:checksum > < sdk:url >sources-18_r01.zip</ sdk:url > </ sdk:archive > </ sdk:archives > < sdk:uses-license ref = "android-sdk-license" > </ sdk:uses-license ></ sdk:source > </ sdk:sdk-repository > |
[...] SDK Managerが取得するxmlファイル(2013/08/15時点) [...]