The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.fallback"> |
| 2 | <application android:label="@string/appTitle"> |
| 3 | |
| 4 | <activity android:name="Fallback" android:label="@string/title" |
| 5 | android:theme="@android:style/Theme.Dialog"> |
| 6 | <!-- for debugging on non-SDK builds |
| 7 | <intent-filter> |
| 8 | <action android:name="android.intent.action.MAIN" /> |
| 9 | <category android:name="android.intent.category.LAUNCHER" /> |
| 10 | </intent-filter> |
| 11 | --> |
| 12 | <!-- SMS intents --> |
| 13 | <intent-filter android:priority="-1000"> |
| 14 | <action android:name="android.intent.action.VIEW" /> |
| 15 | <category android:name="android.intent.category.DEFAULT" /> |
| 16 | <data android:mimeType="vnd.android.cursor.item/sms-chat" /> |
| 17 | </intent-filter> |
| 18 | <intent-filter android:priority="-1000"> |
| 19 | <action android:name="android.intent.action.VIEW" /> |
| 20 | <action android:name="android.intent.action.SENDTO" /> |
| 21 | <category android:name="android.intent.category.DEFAULT" /> |
| 22 | <data android:scheme="sms" /> |
| 23 | </intent-filter> |
| 24 | <intent-filter android:priority="-1000"> |
| 25 | <action android:name="android.intent.action.VIEW" /> |
| 26 | <category android:name="android.intent.category.DEFAULT" /> |
| 27 | <category android:name="android.intent.category.BROWSABLE" /> |
| 28 | <data android:mimeType="vnd.android.cursor.item/sms" /> |
| 29 | </intent-filter> |
| 30 | |
| 31 | <!-- Mail intents --> |
| 32 | <intent-filter android:priority="-1000"> |
| 33 | <action android:name="android.intent.action.VIEW" /> |
| 34 | <action android:name="android.intent.action.SENDTO" /> |
| 35 | <category android:name="android.intent.category.DEFAULT" /> |
| 36 | <category android:name="android.intent.category.BROWSABLE" /> |
| 37 | <data android:scheme="mailto" /> |
| 38 | </intent-filter> |
| 39 | |
| 40 | <!-- Wallpaper intents --> |
| 41 | <intent-filter android:priority="-1000"> |
| 42 | <action android:name="android.intent.action.WALLPAPER_SETTINGS" /> |
| 43 | <category android:name="android.intent.category.DEFAULT" /> |
| 44 | </intent-filter> |
| 45 | |
| 46 | <!-- Camera intents --> |
| 47 | <intent-filter android:priority="-1000"> |
| 48 | <action android:name="android.intent.action.GET_CONTENT" /> |
| 49 | <category android:name="android.intent.category.DEFAULT" /> |
| 50 | <data android:mimeType="image/*" /> |
| 51 | </intent-filter> |
| 52 | |
| 53 | <!-- Settings Intent --> |
| 54 | <intent-filter android:priority="-1000"> |
| 55 | <action android:name="android.settings.SETTINGS" /> |
| 56 | <category android:name="android.intent.category.DEFAULT" /> |
| 57 | </intent-filter> |
| 58 | </activity> |
| 59 | |
| 60 | </application> |
| 61 | |
| 62 | </manifest> |