blob: a78339b291be9b6b0ed365be4f7baf5f80a1e6c3 [file] [log] [blame]
Roman Nurik7ee7d6d2011-09-30 15:40:22 -07001<!--
2 Copyright 2011 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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.example.android.actionbarcompat"
19 android:versionCode="1"
20 android:versionName="1.0">
21
22 <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="14" />
Kartic Grover08bbdb62012-04-25 14:39:38 -070023 <uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
24 <supports-screens android:largeScreens="true"/>
Roman Nurik7ee7d6d2011-09-30 15:40:22 -070025
26 <application android:label="@string/app_name"
27 android:icon="@drawable/ic_launcher"
28 android:theme="@style/AppTheme">
29 <activity android:name=".MainActivity" android:label="@string/app_name">
30 <intent-filter>
31 <action android:name="android.intent.action.MAIN" />
32 <category android:name="android.intent.category.LAUNCHER" />
33 </intent-filter>
34 </activity>
35 </application>
36</manifest>