blob: 0a29147729591da470d8075cf78b741e8923b7d6 [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 Goyalc9a489c2017-02-15 10:38:41 -080021 <uses-sdk android:targetSdkVersion="25" android:minSdkVersion="21"/>
22
Sunny Goyal658058b2017-01-21 01:33:02 -080023 <application android:debuggable="true">
24 <uses-library android:name="android.test.runner" />
25
Sunny Goyald9843352017-01-25 11:19:59 -080026 <receiver
27 android:name="com.android.launcher3.testcomponent.AppWidgetNoConfig"
28 android:label="No Config">
Sunny Goyal658058b2017-01-21 01:33:02 -080029 <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
Sunny Goyald9843352017-01-25 11:19:59 -080036 <receiver
37 android:name="com.android.launcher3.testcomponent.AppWidgetWithConfig"
38 android:label="With Config">
Sunny Goyal658058b2017-01-21 01:33:02 -080039 <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>
Sunny Goyald9843352017-01-25 11:19:59 -080052 <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>
Sunny Goyal658058b2017-01-21 01:33:02 -080062 </application>
63</manifest>