• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
21    <application android:debuggable="true">
22        <uses-library android:name="android.test.runner" />
23
24        <receiver
25            android:name="com.android.launcher3.testcomponent.AppWidgetNoConfig"
26            android:label="No Config">
27            <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
34
35        <receiver
36            android:name="com.android.launcher3.testcomponent.AppWdigetHidden"
37            android:label="Hidden widget">
38            <intent-filter>
39                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
40            </intent-filter>
41            <meta-data android:name="android.appwidget.provider"
42                android:resource="@xml/appwidget_hidden" />
43        </receiver>
44
45        <receiver
46            android:name="com.android.launcher3.testcomponent.AppWidgetWithConfig"
47            android:label="With Config">
48            <intent-filter>
49                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
50            </intent-filter>
51            <meta-data android:name="android.appwidget.provider"
52                       android:resource="@xml/appwidget_with_config" />
53        </receiver>
54
55        <activity
56            android:name="com.android.launcher3.testcomponent.WidgetConfigActivity">
57            <intent-filter>
58                <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
59            </intent-filter>
60        </activity>
61        <activity
62            android:name="com.android.launcher3.testcomponent.RequestPinItemActivity"
63            android:label="Test Pin Item"
64            android:icon="@drawable/test_drawable_pin_item">
65            <intent-filter>
66                <action android:name="android.intent.action.MAIN"/>
67                <category android:name="android.intent.category.LAUNCHER"/>
68                <category android:name="android.intent.category.DEFAULT"/>
69            </intent-filter>
70        </activity>
71    </application>
72</manifest>
73