blob: f2b6482b2f94d18ce4bf6b61bdd0577bbe218548 [file] [log] [blame]
Marco Nelissen66f2cfe2011-06-23 14:05:10 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010-2011 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<manifest
17 xmlns:android="http://schemas.android.com/apk/res/android"
18 package="com.android.musicfx"
19 android:installLocation="auto"
20 android:versionName="1.4" android:versionCode="10400">
Marco Nelissene640b752011-06-24 10:11:24 -070021
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070022 <uses-permission
Marco Nelissen112024a2011-11-16 09:47:34 -080023 android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE" />
24 <uses-permission
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070025 android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
26 <uses-permission
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070027 android:name="android.permission.BLUETOOTH"></uses-permission>
28 <application
29 android:icon="@drawable/icon"
30 android:label="@string/app_name"
Yuuki Yokoyamadb5227e2015-10-01 20:49:26 +090031 android:theme="@android:style/Theme.NoTitleBar"
32 android:allowBackup="false">
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070033 <activity
34 android:name=".ActivityMusic"
Paul McLean37675d62014-09-24 14:08:15 -070035 android:theme="@android:style/Theme.Material.Light"
Marco Nelissen709c4152011-10-31 13:45:46 -070036 android:label="@string/eq_dialog_title">
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070037 <intent-filter>
38 <action
39 android:name="android.media.action.DISPLAY_AUDIO_EFFECT_CONTROL_PANEL" />
40 <category
41 android:name="android.intent.category.DEFAULT" />
42 <category
43 android:name="android.intent.category.CATEGORY_CONTENT_MUSIC" />
44 </intent-filter>
45 </activity>
Marco Nelissend71bc9f2011-07-15 12:06:04 -070046 <activity
47 android:name=".ControlPanelPicker"
48 android:theme="@*android:style/Theme.Holo.Dialog.Alert"
49 android:excludeFromRecents="true" />
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070050 <receiver
51 android:name=".ControlPanelReceiver">
52 <intent-filter>
53 <action
54 android:name="android.media.action.OPEN_AUDIO_EFFECT_CONTROL_SESSION" />
55 <action
56 android:name="android.media.action.CLOSE_AUDIO_EFFECT_CONTROL_SESSION" />
57 <action
58 android:name="AudioEffect.ACTION_SET_PARAM" />
59 <action
60 android:name="AudioEffect.ACTION_GET_PARAM" />
61 <category
62 android:name="android.intent.category.DEFAULT" />
63 </intent-filter>
64 </receiver>
Marco Nelissenc897d9c2011-06-24 13:15:49 -070065
66 <receiver
67 android:name="Compatibility$Receiver">
68 <intent-filter>
Marco Nelissenc897d9c2011-06-24 13:15:49 -070069 <action android:name="android.intent.action.PACKAGE_ADDED" />
70 <data android:scheme="package" />
71 </intent-filter>
72 <intent-filter>
73 <action android:name="android.intent.action.PACKAGE_REPLACED" />
74 <data android:scheme="package" />
75 </intent-filter>
76 <intent-filter>
77 <action android:name="android.intent.action.PACKAGE_REMOVED" />
78 <data android:scheme="package" />
79 </intent-filter>
80 </receiver>
Marco Nelissend71bc9f2011-07-15 12:06:04 -070081 <service android:name="Compatibility$Service" android:exported="false" />
Marco Nelissenc897d9c2011-06-24 13:15:49 -070082 <activity
83 android:name="Compatibility$Redirector">
84 <intent-filter
85 android:priority="2147483647">
86 <action android:name="android.media.action.DISPLAY_AUDIO_EFFECT_CONTROL_PANEL" />
87 <category android:name="android.intent.category.DEFAULT" />
88 </intent-filter>
89 </activity>
90
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070091 </application>
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070092</manifest>