Megha Joshi | 42d3a4a | 2010-08-17 13:56:59 -0700 | [diff] [blame] | 1 | <?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 Grover | 08bbdb6 | 2012-04-25 14:39:38 -0700 | [diff] [blame] | 6 | |
| 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 Joshi | 42d3a4a | 2010-08-17 13:56:59 -0700 | [diff] [blame] | 11 | <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 Grover | 08bbdb6 | 2012-04-25 14:39:38 -0700 | [diff] [blame] | 21 | |
Megha Joshi | 42d3a4a | 2010-08-17 13:56:59 -0700 | [diff] [blame] | 22 | </manifest> |