blob: 3601992d13cc566fc1193fbf76395b4a6514c235 [file] [log] [blame]
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07001<?xml version="1.0" encoding="utf-8"?>
2
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07004 package="com.android.tests.appwidgethost">
5 <uses-permission android:name="android.permission.VIBRATE"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08006
7 <application>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -07008 <activity android:name="AppWidgetHostActivity"
9 android:label="_AppWidgetHost"
10 android:exported="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080011 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070012 <action android:name="android.intent.action.MAIN"/>
13 <category android:name="android.intent.category.DEFAULT"/>
14 <category android:name="android.intent.category.LAUNCHER"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080015 </intent-filter>
16 </activity>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070017 <activity android:name="TestAppWidgetConfigure"
18 android:label="Configure TestAppWidgetProvider"
19 android:exported="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080020 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070021 <action android:name="android.intent.action.MAIN"/>
22 <category android:name="android.intent.category.DEFAULT"/>
23 <category android:name="android.intent.category.LAUNCHER"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024 </intent-filter>
25 </activity>
26
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070027 <!-- BEGIN_INCLUDE(AppWidgetProvider) -->
28 <receiver android:name="TestAppWidgetProvider"
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070029 android:label="@string/oh_hai"
30 android:icon="@drawable/oh_hai_icon"
31 android:exported="true">
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032 <intent-filter>
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070033 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034 </intent-filter>
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070035 <meta-data android:name="android.appwidget.provider"
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070036 android:resource="@xml/appwidget_info"/>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037 </receiver>
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -070038 <!-- END_INCLUDE(AppWidgetProvider) -->
Ashwini Orugantie178c24d2020-03-18 15:46:39 -070039
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040 </application>
41</manifest>