• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<!--
18    Declares the contents of this Android application. The "namespace"
19    attribute brings in the Android platform namespace, and the
20    "package" attribute provides a unique Android name for the application.
21    If you use this file as a template in your own application, you must change
22    the package name from "com.android.example" to one that you own or have
23    control over.
24 -->
25<manifest xmlns:android="http://schemas.android.com/apk/res/android"
26      package="com.android.example.spinner"
27      android:versionCode="1"
28      android:versionName="1.0">
29
30    <!--
31        Requires a minimum platform version of Android-3 (SDK 1.5) to run
32    -->
33    <uses-sdk android:minSdkVersion="3"
34      android:targetSdkVersion="11"/>
35
36    <!--
37        Sets the application's user-readable label
38     -->
39    <application android:label="@string/app_name">
40        <!--
41            Sets the activity's name and label
42         -->
43        <activity android:name=".SpinnerActivity"
44                  android:label="@string/app_name">
45            <!--
46                This activity responds to MAIN and LAUNCHER intents
47             -->
48            <intent-filter>
49                <action android:name="android.intent.action.MAIN" />
50                <category android:name="android.intent.category.LAUNCHER" />
51            </intent-filter>
52        </activity>
53
54    </application>
55
56</manifest>
57