1*d57664e9SAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?> 2*d57664e9SAndroid Build Coastguard Worker 3*d57664e9SAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android" 4*d57664e9SAndroid Build Coastguard Worker package="com.android.tests.appwidgethost"> 5*d57664e9SAndroid Build Coastguard Worker <uses-permission android:name="android.permission.VIBRATE"/> 6*d57664e9SAndroid Build Coastguard Worker 7*d57664e9SAndroid Build Coastguard Worker <application> 8*d57664e9SAndroid Build Coastguard Worker <activity android:name="AppWidgetHostActivity" 9*d57664e9SAndroid Build Coastguard Worker android:label="_AppWidgetHost" 10*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 11*d57664e9SAndroid Build Coastguard Worker <intent-filter> 12*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 13*d57664e9SAndroid Build Coastguard Worker <category android:name="android.intent.category.DEFAULT"/> 14*d57664e9SAndroid Build Coastguard Worker <category android:name="android.intent.category.LAUNCHER"/> 15*d57664e9SAndroid Build Coastguard Worker </intent-filter> 16*d57664e9SAndroid Build Coastguard Worker </activity> 17*d57664e9SAndroid Build Coastguard Worker <activity android:name="TestAppWidgetConfigure" 18*d57664e9SAndroid Build Coastguard Worker android:label="Configure TestAppWidgetProvider" 19*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 20*d57664e9SAndroid Build Coastguard Worker <intent-filter> 21*d57664e9SAndroid Build Coastguard Worker <action android:name="android.intent.action.MAIN"/> 22*d57664e9SAndroid Build Coastguard Worker <category android:name="android.intent.category.DEFAULT"/> 23*d57664e9SAndroid Build Coastguard Worker <category android:name="android.intent.category.LAUNCHER"/> 24*d57664e9SAndroid Build Coastguard Worker </intent-filter> 25*d57664e9SAndroid Build Coastguard Worker </activity> 26*d57664e9SAndroid Build Coastguard Worker 27*d57664e9SAndroid Build Coastguard Worker <!-- BEGIN_INCLUDE(AppWidgetProvider) --> 28*d57664e9SAndroid Build Coastguard Worker <receiver android:name="TestAppWidgetProvider" 29*d57664e9SAndroid Build Coastguard Worker android:label="@string/oh_hai" 30*d57664e9SAndroid Build Coastguard Worker android:icon="@drawable/oh_hai_icon" 31*d57664e9SAndroid Build Coastguard Worker android:exported="true"> 32*d57664e9SAndroid Build Coastguard Worker <intent-filter> 33*d57664e9SAndroid Build Coastguard Worker <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/> 34*d57664e9SAndroid Build Coastguard Worker </intent-filter> 35*d57664e9SAndroid Build Coastguard Worker <meta-data android:name="android.appwidget.provider" 36*d57664e9SAndroid Build Coastguard Worker android:resource="@xml/appwidget_info"/> 37*d57664e9SAndroid Build Coastguard Worker </receiver> 38*d57664e9SAndroid Build Coastguard Worker <!-- END_INCLUDE(AppWidgetProvider) --> 39*d57664e9SAndroid Build Coastguard Worker 40*d57664e9SAndroid Build Coastguard Worker </application> 41*d57664e9SAndroid Build Coastguard Worker</manifest> 42