blob: 43eb4fffa61eea379a0d19d2f3d7f921ef1fb8f3 [file] [log] [blame]
Megha Joshi42d3a4a2010-08-17 13:56:59 -07001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.example.android.touchexample"
4 android:versionCode="1"
5 android:versionName="1.0">
Kartic Grover08bbdb62012-04-25 14:39:38 -07006
7 <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8" />
8 <uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
9 <supports-screens android:largeScreens="true"/>
10
Megha Joshi42d3a4a2010-08-17 13:56:59 -070011 <application android:icon="@drawable/icon" android:label="@string/app_name">
12 <activity android:name=".TouchExampleActivity"
13 android:label="@string/app_name">
14 <intent-filter>
15 <action android:name="android.intent.action.MAIN" />
16 <category android:name="android.intent.category.LAUNCHER" />
17 </intent-filter>
18 </activity>
19
20 </application>
Kartic Grover08bbdb62012-04-25 14:39:38 -070021
Megha Joshi42d3a4a2010-08-17 13:56:59 -070022</manifest>