blob: 500c8643b29cd1a7b17950039dfda8e402e53286 [file] [log] [blame]
Dirk Dougherty2f0b1c12010-05-07 09:11:24 -07001<?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">
Raphael Molla3dc6742010-11-22 12:39:47 -080029
30 <!--
31 Requires a minimum platform version of Android-3 (SDK 1.5) to run
32 -->
Robert Lye6fb82d2011-02-04 18:27:35 -080033 <uses-sdk android:minSdkVersion="3"
34 android:targetSdkVersion="11"/>
Raphael Molla3dc6742010-11-22 12:39:47 -080035
Dirk Dougherty2f0b1c12010-05-07 09:11:24 -070036 <!--
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>
Dirk Dougherty2f0b1c12010-05-07 09:11:24 -070055
56</manifest>