blob: ae9b27e09db4f0fae56c852c56b89bf641e5ab5f [file] [log] [blame]
Kenny Guyda652442015-01-26 14:49:13 +00001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 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 xmlns:android="http://schemas.android.com/apk/res/android"
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070018 package="com.android.cts.launchertests.support">
Kenny Guyda652442015-01-26 14:49:13 +000019
Makoto Onuki223a71d2017-02-10 15:13:04 -080020 <!-- Target 25. Don't change to >= 26 since that'll break background services. -->
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070021 <uses-sdk android:minSdkVersion="21"
22 android:targetSdkVersion="25"/>
Kenny Guyda652442015-01-26 14:49:13 +000023
24 <application>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070025 <service android:name=".LauncherCallbackTestsService"
26 android:exported="true">
Kenny Guyda652442015-01-26 14:49:13 +000027 <intent-filter>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070028 <action android:name="com.android.cts.launchertests.support.REGISTER_CALLBACK"/>
Kenny Guyda652442015-01-26 14:49:13 +000029 </intent-filter>
30 </service>
Tony Makd5460022017-12-09 17:07:29 +000031
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070032 <activity android:name=".LauncherActivity"
33 android:exported="true">
Tony Makd5460022017-12-09 17:07:29 +000034 <intent-filter>
35 <action android:name="android.intent.action.MAIN"/>
36 <category android:name="android.intent.category.HOME"/>
37 <category android:name="android.intent.category.DEFAULT"/>
38 </intent-filter>
39 </activity>
40
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070041 <receiver android:name=".QuietModeCommandReceiver"
42 android:exported="true">
Tony Makd5460022017-12-09 17:07:29 +000043 <intent-filter>
44 <action android:name="toggle_quiet_mode"/>
45 </intent-filter>
46 </receiver>
Kenny Guyda652442015-01-26 14:49:13 +000047 </application>
48</manifest>