blob: 6d9a4f6835c947d7cf49b377e45b9402bd6ef14d [file] [log] [blame]
Sungsoo412e7352016-12-16 14:28:26 +09001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2016 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Sungsoo412e7352016-12-16 14:28:26 +090018 package="android.support.mediacompat.test">
Aurimas Liutikas4f5be922017-06-08 16:23:58 -070019 <uses-sdk android:targetSdkVersion="${target-sdk-version}"/>
Sungsoo412e7352016-12-16 14:28:26 +090020
21 <application android:supportsRtl="true">
Aurimas Liutikas4f5be922017-06-08 16:23:58 -070022 <receiver android:name="android.support.v4.media.session.MediaButtonReceiver">
Hyundo Moond398dfa2017-01-03 13:45:56 +090023 <intent-filter>
Aurimas Liutikas4f5be922017-06-08 16:23:58 -070024 <action android:name="android.intent.action.MEDIA_BUTTON"/>
Hyundo Moond398dfa2017-01-03 13:45:56 +090025 </intent-filter>
26 </receiver>
Hyundo Moonb159a082017-01-02 18:10:35 +090027 <service android:name="android.support.v4.media.StubMediaBrowserServiceCompat">
28 <intent-filter>
29 <action android:name="android.media.browse.MediaBrowserService"/>
30 </intent-filter>
31 </service>
Donghyun Cho28cc3f62017-03-24 18:39:18 +090032 <service android:name="android.support.v4.media.StubRemoteMediaBrowserServiceCompat"
33 android:process=":remote">
34 <intent-filter>
35 <action android:name="android.media.browse.MediaBrowserService"/>
36 </intent-filter>
37 </service>
Aurimas Liutikas4f5be922017-06-08 16:23:58 -070038 <service
39 android:name="android.support.v4.media.StubMediaBrowserServiceCompatWithDelayedMediaSession">
Hyundo Moonb3d60322017-05-19 11:10:08 +090040 <intent-filter>
41 <action android:name="android.media.browse.MediaBrowserService"/>
42 </intent-filter>
43 </service>
Sungsoo412e7352016-12-16 14:28:26 +090044 </application>
45
Sungsoo412e7352016-12-16 14:28:26 +090046</manifest>