Sunny Goyal | 658058b | 2017-01-21 01:33:02 -0800 | [diff] [blame] | 1 | <?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 | |
vadimt | b96898a | 2019-04-05 18:35:29 -0700 | [diff] [blame^] | 21 | <uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"/> |
Winson Chung | b3fe661 | 2018-10-29 10:45:25 -0700 | [diff] [blame] | 22 | |
Sunny Goyal | 658058b | 2017-01-21 01:33:02 -0800 | [diff] [blame] | 23 | <application android:debuggable="true"> |
vadimt | b96898a | 2019-04-05 18:35:29 -0700 | [diff] [blame^] | 24 | <uses-library android:name="android.test.runner"/> |
Sunny Goyal | 658058b | 2017-01-21 01:33:02 -0800 | [diff] [blame] | 25 | |
Sunny Goyal | d984335 | 2017-01-25 11:19:59 -0800 | [diff] [blame] | 26 | <receiver |
| 27 | android:name="com.android.launcher3.testcomponent.AppWidgetNoConfig" |
| 28 | android:label="No Config"> |
Sunny Goyal | 658058b | 2017-01-21 01:33:02 -0800 | [diff] [blame] | 29 | <intent-filter> |
vadimt | b96898a | 2019-04-05 18:35:29 -0700 | [diff] [blame^] | 30 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/> |
Sunny Goyal | 658058b | 2017-01-21 01:33:02 -0800 | [diff] [blame] | 31 | </intent-filter> |
| 32 | <meta-data android:name="android.appwidget.provider" |
vadimt | b96898a | 2019-04-05 18:35:29 -0700 | [diff] [blame^] | 33 | android:resource="@xml/appwidget_no_config"/> |
Sunny Goyal | 658058b | 2017-01-21 01:33:02 -0800 | [diff] [blame] | 34 | </receiver> |
| 35 | |
Winson Chung | 1054d4e | 2018-03-05 19:39:21 +0000 | [diff] [blame] | 36 | <receiver |
| 37 | android:name="com.android.launcher3.testcomponent.AppWdigetHidden" |
| 38 | android:label="Hidden widget"> |
| 39 | <intent-filter> |
vadimt | b96898a | 2019-04-05 18:35:29 -0700 | [diff] [blame^] | 40 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/> |
Winson Chung | 1054d4e | 2018-03-05 19:39:21 +0000 | [diff] [blame] | 41 | </intent-filter> |
| 42 | <meta-data android:name="android.appwidget.provider" |
vadimt | b96898a | 2019-04-05 18:35:29 -0700 | [diff] [blame^] | 43 | android:resource="@xml/appwidget_hidden"/> |
Winson Chung | 1054d4e | 2018-03-05 19:39:21 +0000 | [diff] [blame] | 44 | </receiver> |
| 45 | |
Sunny Goyal | d984335 | 2017-01-25 11:19:59 -0800 | [diff] [blame] | 46 | <receiver |
| 47 | android:name="com.android.launcher3.testcomponent.AppWidgetWithConfig" |
| 48 | android:label="With Config"> |
Sunny Goyal | 658058b | 2017-01-21 01:33:02 -0800 | [diff] [blame] | 49 | <intent-filter> |
vadimt | b96898a | 2019-04-05 18:35:29 -0700 | [diff] [blame^] | 50 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/> |
Sunny Goyal | 658058b | 2017-01-21 01:33:02 -0800 | [diff] [blame] | 51 | </intent-filter> |
| 52 | <meta-data android:name="android.appwidget.provider" |
vadimt | b96898a | 2019-04-05 18:35:29 -0700 | [diff] [blame^] | 53 | android:resource="@xml/appwidget_with_config"/> |
Sunny Goyal | 658058b | 2017-01-21 01:33:02 -0800 | [diff] [blame] | 54 | </receiver> |
| 55 | |
| 56 | <activity |
| 57 | android:name="com.android.launcher3.testcomponent.WidgetConfigActivity"> |
| 58 | <intent-filter> |
| 59 | <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/> |
| 60 | </intent-filter> |
| 61 | </activity> |
Sunny Goyal | d984335 | 2017-01-25 11:19:59 -0800 | [diff] [blame] | 62 | <activity |
| 63 | android:name="com.android.launcher3.testcomponent.RequestPinItemActivity" |
vadimt | b96898a | 2019-04-05 18:35:29 -0700 | [diff] [blame^] | 64 | android:icon="@drawable/test_drawable_pin_item" |
| 65 | android:label="Test Pin Item"> |
Sunny Goyal | d984335 | 2017-01-25 11:19:59 -0800 | [diff] [blame] | 66 | <intent-filter> |
| 67 | <action android:name="android.intent.action.MAIN"/> |
| 68 | <category android:name="android.intent.category.LAUNCHER"/> |
| 69 | <category android:name="android.intent.category.DEFAULT"/> |
| 70 | </intent-filter> |
| 71 | </activity> |
Sunny Goyal | 4ed58d6 | 2018-10-05 16:19:38 -0700 | [diff] [blame] | 72 | |
| 73 | <provider |
| 74 | android:name="com.android.launcher3.testcomponent.TestCommandReceiver" |
| 75 | android:authorities="${packageName}.commands" |
vadimt | b96898a | 2019-04-05 18:35:29 -0700 | [diff] [blame^] | 76 | android:exported="true"/> |
Sunny Goyal | 4ed58d6 | 2018-10-05 16:19:38 -0700 | [diff] [blame] | 77 | |
| 78 | <activity |
| 79 | android:name="com.android.launcher3.testcomponent.TestLauncherActivity" |
Sunny Goyal | 4ed58d6 | 2018-10-05 16:19:38 -0700 | [diff] [blame] | 80 | android:clearTaskOnLaunch="true" |
Sunny Goyal | 4ed58d6 | 2018-10-05 16:19:38 -0700 | [diff] [blame] | 81 | android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize" |
vadimt | b96898a | 2019-04-05 18:35:29 -0700 | [diff] [blame^] | 82 | android:enabled="false" |
| 83 | android:label="Test launcher" |
| 84 | android:launchMode="singleTask" |
Sunny Goyal | 4ed58d6 | 2018-10-05 16:19:38 -0700 | [diff] [blame] | 85 | android:process=":testLauncherProcess" |
vadimt | b96898a | 2019-04-05 18:35:29 -0700 | [diff] [blame^] | 86 | android:resizeableActivity="true" |
| 87 | android:screenOrientation="unspecified" |
| 88 | android:stateNotNeeded="true" |
| 89 | android:taskAffinity="" |
| 90 | android:theme="@android:style/Theme.DeviceDefault.Light" |
| 91 | android:windowSoftInputMode="adjustPan"> |
Sunny Goyal | 4ed58d6 | 2018-10-05 16:19:38 -0700 | [diff] [blame] | 92 | <intent-filter> |
vadimt | b96898a | 2019-04-05 18:35:29 -0700 | [diff] [blame^] | 93 | <action android:name="android.intent.action.MAIN"/> |
| 94 | <category android:name="android.intent.category.HOME"/> |
| 95 | <category android:name="android.intent.category.DEFAULT"/> |
Sunny Goyal | 4ed58d6 | 2018-10-05 16:19:38 -0700 | [diff] [blame] | 96 | <category android:name="android.intent.category.MONKEY"/> |
vadimt | b96898a | 2019-04-05 18:35:29 -0700 | [diff] [blame^] | 97 | <category android:name="android.intent.category.LAUNCHER_APP"/> |
Sunny Goyal | 4ed58d6 | 2018-10-05 16:19:38 -0700 | [diff] [blame] | 98 | </intent-filter> |
| 99 | </activity> |
vadimt | fb0cb7a | 2019-04-04 17:35:57 -0700 | [diff] [blame] | 100 | <activity |
| 101 | android:name="com.android.launcher3.testcomponent.BaseTestingActivity" |
| 102 | android:label="LauncherTestApp"> |
| 103 | <intent-filter> |
| 104 | <action android:name="android.intent.action.MAIN"/> |
| 105 | <category android:name="android.intent.category.LAUNCHER"/> |
| 106 | </intent-filter> |
vadimt | b96898a | 2019-04-05 18:35:29 -0700 | [diff] [blame^] | 107 | <intent-filter> |
| 108 | <action android:name="com.android.launcher3.intent.action.test_shortcut"/> |
| 109 | <category android:name="android.intent.category.DEFAULT"/> |
| 110 | </intent-filter> |
| 111 | <meta-data android:name="android.app.shortcuts" |
| 112 | android:resource="@xml/shortcuts"/> |
vadimt | fb0cb7a | 2019-04-04 17:35:57 -0700 | [diff] [blame] | 113 | </activity> |
Sunny Goyal | 658058b | 2017-01-21 01:33:02 -0800 | [diff] [blame] | 114 | </application> |
| 115 | </manifest> |