aboutsummaryrefslogtreecommitdiffstats
path: root/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/testdata/sys_img_sample_1.xml
blob: 6196db40a7d7e7f73eaa4bfce735cc51b9d052d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0"?>
<!--
 * 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-sys-img
    xmlns:sdk="http://schemas.android.com/sdk/android/sys-img/1">

    <!-- Define a couple of licenses. These will be referenced by uses-license later. -->

    <sdk:license type="text" id="license1">
        This is the license
        for this platform.
    </sdk:license>

    <sdk:license id="license2">
        Licenses are only of type 'text' right now, so this is implied.
    </sdk:license>

    <sdk:system-image>
        <sdk:api-level>2</sdk:api-level>
        <sdk:revision>1</sdk:revision>
        <sdk:abi>x86</sdk:abi>
        <sdk:archives>
            <sdk:archive os="any">
                <sdk:size>65535</sdk:size>
                <sdk:checksum type="sha1">1234ae37115ebf13412bbef91339ee0d94541234</sdk:checksum>
                <sdk:url>http://www.example.com/plat1/x86/image1.zip</sdk:url>
            </sdk:archive>
        </sdk:archives>
    </sdk:system-image>

    <sdk:system-image>
        <sdk:api-level>2</sdk:api-level>
        <sdk:revision>2</sdk:revision>
        <sdk:abi>armeabi-v7a</sdk:abi>
        <sdk:archives>
            <sdk:archive os="any">
                <sdk:size>65534</sdk:size>
                <sdk:checksum type="sha1">1234ae37115ebf13412bbef91339ee0d94541234</sdk:checksum>
                <sdk:url>http://www.example.com/plat1/armv7/image2.zip</sdk:url>
            </sdk:archive>
        </sdk:archives>
    </sdk:system-image>

    <sdk:system-image>
        <sdk:api-level>42</sdk:api-level>
        <sdk:revision>12</sdk:revision>
        <sdk:abi>armeabi</sdk:abi>
        <sdk:archives>
            <sdk:archive os="any">
                <sdk:size>1234</sdk:size>
                <sdk:checksum type="sha1">12345637115ebf13412bbef91339ee0d94541234</sdk:checksum>
                <sdk:url>http://www.example.com/plat42/86/image12.zip</sdk:url>
            </sdk:archive>
        </sdk:archives>
    </sdk:system-image>

    <sdk:system-image>
        <sdk:api-level>42</sdk:api-level>
        <sdk:revision>12</sdk:revision>
        <sdk:abi>mips</sdk:abi>
        <sdk:archives>
            <sdk:archive os="any">
                <sdk:size>12345</sdk:size>
                <sdk:checksum type="sha1">12345637115ebf13412bbef91339ee0d94541234</sdk:checksum>
                <sdk:url>http://www.example.com/plat42/mips/image12.zip</sdk:url>
            </sdk:archive>
        </sdk:archives>
    </sdk:system-image>

</sdk:sdk-sys-img>