blob: 95d91787c9fe5290499d5c10cdc2eed2e4859290 [file] [log] [blame]
Chris Wren7e1b81a2014-10-24 17:11:08 -04001<?xml version="1.0" encoding="utf-8"?>
Chris Wren7e1b81a2014-10-24 17:11:08 -04002<!-- Copyright (C) 2010 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.robot"
19 android:versionCode="1"
20 android:versionName="1.0">
Chris Wren7e1b81a2014-10-24 17:11:08 -040021
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070022 <uses-sdk android:minSdkVersion="19"
23 android:targetSdkVersion="21"/>
Chris Wren7e1b81a2014-10-24 17:11:08 -040024
25 <application android:label="@string/app_name"
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070026 android:icon="@drawable/icon"
27 android:debuggable="true">
Chris Wren7e1b81a2014-10-24 17:11:08 -040028
29 <!-- Required because a bare service won't show up in the app notifications list. -->
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070030 <activity android:name=".NotificationBotActivity"
31 android:exported="true">
Chris Wren7e1b81a2014-10-24 17:11:08 -040032 <intent-filter>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070033 <action android:name="android.intent.action.MAIN"/>
34 <category android:name="android.intent.category.LAUNCHER"/>
Chris Wren7e1b81a2014-10-24 17:11:08 -040035 </intent-filter>
36 </activity>
37
38 <!-- services used by the CtsVerifier to test notifications. -->
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070039 <receiver android:name=".NotificationBot"
40 android:exported="true">
Chris Wren7e1b81a2014-10-24 17:11:08 -040041 <intent-filter>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070042 <action android:name="com.android.cts.robot.ACTION_POST"/>
43 <action android:name="com.android.cts.robot.ACTION_CANCEL"/>
44 <action android:name="com.android.cts.robot.ACTION_RESET_SETUP_NOTIFICATION"/>
45 <action android:name="com.android.cts.robot.ACTION_INLINE_REPLY"/>
Chris Wren7e1b81a2014-10-24 17:11:08 -040046 </intent-filter>
47 </receiver>
Chris Wren7e1b81a2014-10-24 17:11:08 -040048 </application>
49
50</manifest>