blob: f1accf8fe89099ab4eb2b6f97c6f81ade4a42065 [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">
29 <!--
30 Sets the application's user-readable label
31 -->
32 <application android:label="@string/app_name">
33 <!--
34 Sets the activity's name and label
35 -->
36 <activity android:name=".SpinnerActivity"
37 android:label="@string/app_name">
38 <!--
39 This activity responds to MAIN and LAUNCHER intents
40 -->
41 <intent-filter>
42 <action android:name="android.intent.action.MAIN" />
43 <category android:name="android.intent.category.LAUNCHER" />
44 </intent-filter>
45 </activity>
46
47 </application>
48 <!--
49 Requires a minimum platform version of Android-3 (SDK 1.5) to run
50 -->
51 <uses-sdk android:minSdkVersion="3"/>
52
53</manifest>