blob: 3e5854d771fafbbd33b191d4d9baf5ecff8c44a3 [file] [log] [blame]
Jaewan Kimf0cc39f2017-04-06 13:54:36 +09001<?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 xmlns:android="http://schemas.android.com/apk/res/android"
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070018 package="android.media.session.cts"
19 android:targetSandboxVersion="2">
Jaewan Kimf0cc39f2017-04-06 13:54:36 +090020
21 <uses-sdk android:minSdkVersion="26"/>
22
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070023 <application android:testOnly="true">
24 <uses-library android:name="android.test.runner"/>
Paul Duffinfda34ce2017-12-08 00:02:41 +000025
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070026 <service android:name=".MediaSessionManagerTest"
27 android:label="MediaSessionManagerTest"
28 android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"
29 android:exported="true">
Jaewan Kim4ff2e362017-09-14 11:25:12 +090030 <intent-filter>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070031 <action android:name="android.service.notification.NotificationListenerService"/>
Jaewan Kim4ff2e362017-09-14 11:25:12 +090032 </intent-filter>
33 </service>
34 </application>
Jaewan Kimf0cc39f2017-04-06 13:54:36 +090035
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070036 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
37 android:targetPackage="android.media.session.cts"
38 android:label="MediaSession multi-user case CTS Tests"/>
Jaewan Kimf0cc39f2017-04-06 13:54:36 +090039
40</manifest>