• 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    <uses-sdk android:targetSdkVersion="25" android:minSdkVersion="21"/>
22
23    <application android:debuggable="true">
24        <uses-library android:name="android.test.runner" />
25
26        <receiver
27            android:name="com.android.launcher3.testcomponent.AppWidgetNoConfig"
28            android:label="No Config">
29            <intent-filter>
30                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
31            </intent-filter>
32            <meta-data android:name="android.appwidget.provider"
33                       android:resource="@xml/appwidget_no_config" />
34        </receiver>
35
36        <receiver
37            android:name="com.android.launcher3.testcomponent.AppWidgetWithConfig"
38            android:label="With Config">
39            <intent-filter>
40                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
41            </intent-filter>
42            <meta-data android:name="android.appwidget.provider"
43                       android:resource="@xml/appwidget_with_config" />
44        </receiver>
45
46        <activity
47            android:name="com.android.launcher3.testcomponent.WidgetConfigActivity">
48            <intent-filter>
49                <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
50            </intent-filter>
51        </activity>
52        <activity
53            android:name="com.android.launcher3.testcomponent.RequestPinItemActivity"
54            android:label="Test Pin Item"
55            android:icon="@drawable/test_drawable_pin_item">
56            <intent-filter>
57                <action android:name="android.intent.action.MAIN"/>
58                <category android:name="android.intent.category.LAUNCHER"/>
59                <category android:name="android.intent.category.DEFAULT"/>
60            </intent-filter>
61        </activity>
62    </application>
63</manifest>
64