The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 2 | package="com.android.tests.appwidgethost"> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 3 | <uses-permission android:name="android.permission.VIBRATE" /> |
| 4 | |
| 5 | <application> |
The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 6 | <activity android:name="AppWidgetHostActivity" android:label="_AppWidgetHost"> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 7 | <intent-filter> |
| 8 | <action android:name="android.intent.action.MAIN" /> |
| 9 | <category android:name="android.intent.category.DEFAULT" /> |
| 10 | <category android:name="android.intent.category.LAUNCHER" /> |
| 11 | </intent-filter> |
| 12 | </activity> |
The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 13 | <activity android:name="TestAppWidgetConfigure" android:label="Configure TestAppWidgetProvider"> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 14 | <intent-filter> |
| 15 | <action android:name="android.intent.action.MAIN" /> |
| 16 | <category android:name="android.intent.category.DEFAULT" /> |
| 17 | <category android:name="android.intent.category.LAUNCHER" /> |
| 18 | </intent-filter> |
| 19 | </activity> |
| 20 | |
The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 21 | <!-- BEGIN_INCLUDE(AppWidgetProvider) --> |
| 22 | <receiver android:name="TestAppWidgetProvider" |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 23 | android:label="@string/oh_hai" |
| 24 | android:icon="@drawable/oh_hai_icon" |
| 25 | > |
| 26 | <intent-filter> |
The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 27 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 28 | </intent-filter> |
The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 29 | <meta-data android:name="android.appwidget.provider" |
| 30 | android:resource="@xml/appwidget_info" |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 31 | /> |
| 32 | </receiver> |
The Android Open Source Project | c39a6e0 | 2009-03-11 12:11:56 -0700 | [diff] [blame] | 33 | <!-- END_INCLUDE(AppWidgetProvider) --> |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 34 | |
| 35 | </application> |
| 36 | </manifest> |