blob: 439058cbdae437e749d392c3f1a5b2ce008e74c9 [file] [log] [blame]
Sunny Goyal658058b2017-01-21 01:33:02 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2017 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest
18 xmlns:android="http://schemas.android.com/apk/res/android"
19 package="com.android.launcher3.tests">
20
Sunny Goyal658058b2017-01-21 01:33:02 -080021 <application android:debuggable="true">
22 <uses-library android:name="android.test.runner" />
23
Sunny Goyald9843352017-01-25 11:19:59 -080024 <receiver
25 android:name="com.android.launcher3.testcomponent.AppWidgetNoConfig"
26 android:label="No Config">
Sunny Goyal658058b2017-01-21 01:33:02 -080027 <intent-filter>
28 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
29 </intent-filter>
30 <meta-data android:name="android.appwidget.provider"
31 android:resource="@xml/appwidget_no_config" />
32 </receiver>
33
Winson Chung1054d4e2018-03-05 19:39:21 +000034 <receiver
35 android:name="com.android.launcher3.testcomponent.AppWdigetHidden"
36 android:label="Hidden widget">
37 <intent-filter>
38 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
39 </intent-filter>
40 <meta-data android:name="android.appwidget.provider"
41 android:resource="@xml/appwidget_hidden" />
42 </receiver>
43
Sunny Goyald9843352017-01-25 11:19:59 -080044 <receiver
45 android:name="com.android.launcher3.testcomponent.AppWidgetWithConfig"
46 android:label="With Config">
Sunny Goyal658058b2017-01-21 01:33:02 -080047 <intent-filter>
48 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
49 </intent-filter>
50 <meta-data android:name="android.appwidget.provider"
51 android:resource="@xml/appwidget_with_config" />
52 </receiver>
53
54 <activity
55 android:name="com.android.launcher3.testcomponent.WidgetConfigActivity">
56 <intent-filter>
57 <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
58 </intent-filter>
59 </activity>
Sunny Goyald9843352017-01-25 11:19:59 -080060 <activity
61 android:name="com.android.launcher3.testcomponent.RequestPinItemActivity"
62 android:label="Test Pin Item"
63 android:icon="@drawable/test_drawable_pin_item">
64 <intent-filter>
65 <action android:name="android.intent.action.MAIN"/>
66 <category android:name="android.intent.category.LAUNCHER"/>
67 <category android:name="android.intent.category.DEFAULT"/>
68 </intent-filter>
69 </activity>
Sunny Goyal4ed58d62018-10-05 16:19:38 -070070
71 <provider
72 android:name="com.android.launcher3.testcomponent.TestCommandReceiver"
73 android:authorities="${packageName}.commands"
74 android:exported="true" />
75
76 <activity
77 android:name="com.android.launcher3.testcomponent.TestLauncherActivity"
78 android:launchMode="singleTask"
79 android:clearTaskOnLaunch="true"
80 android:label="Test launcher"
81 android:stateNotNeeded="true"
82 android:theme="@android:style/Theme.DeviceDefault.Light"
83 android:windowSoftInputMode="adjustPan"
84 android:screenOrientation="unspecified"
85 android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
86 android:resizeableActivity="true"
87 android:taskAffinity=""
88 android:process=":testLauncherProcess"
89 android:enabled="false">
90 <intent-filter>
91 <action android:name="android.intent.action.MAIN" />
92 <category android:name="android.intent.category.HOME" />
93 <category android:name="android.intent.category.DEFAULT" />
94 <category android:name="android.intent.category.MONKEY"/>
95 <category android:name="android.intent.category.LAUNCHER_APP" />
96 </intent-filter>
97 </activity>
Sunny Goyal658058b2017-01-21 01:33:02 -080098 </application>
99</manifest>