Mike Lockwood | cd39282 | 2011-05-02 14:31:47 -0400 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.android.missilelauncher"> |
| 3 | |
| 4 | <uses-feature android:name="android.hardware.usb.host" /> |
| 5 | <uses-sdk android:minSdkVersion="12" /> |
| 6 | |
| 7 | <application> |
| 8 | <activity android:name="MissileLauncherActivity" |
| 9 | android:label="Missile Launcher" |
| 10 | android:screenOrientation="nosensor"> |
| 11 | <intent-filter> |
| 12 | <action android:name="android.intent.action.MAIN" /> |
| 13 | <category android:name="android.intent.category.DEFAULT" /> |
| 14 | <category android:name="android.intent.category.LAUNCHER" /> |
| 15 | </intent-filter> |
| 16 | |
| 17 | <intent-filter> |
| 18 | <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" /> |
| 19 | </intent-filter> |
| 20 | |
| 21 | <meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" |
| 22 | android:resource="@xml/device_filter" /> |
| 23 | </activity> |
| 24 | </application> |
| 25 | </manifest> |