blob: 0a12bd0b9ae65c7056dd325049dce09d9eb3f504 [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"
31 android:theme="@android:style/Theme.NoTitleBar">
32 <activity
33 android:name=".ActivityMusic"
Paul McLean37675d62014-09-24 14:08:15 -070034 android:theme="@android:style/Theme.Material.Light"
Marco Nelissen709c4152011-10-31 13:45:46 -070035 android:label="@string/eq_dialog_title">
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070036 <intent-filter>
37 <action
38 android:name="android.media.action.DISPLAY_AUDIO_EFFECT_CONTROL_PANEL" />
39 <category
40 android:name="android.intent.category.DEFAULT" />
41 <category
42 android:name="android.intent.category.CATEGORY_CONTENT_MUSIC" />
43 </intent-filter>
44 </activity>
Marco Nelissend71bc9f2011-07-15 12:06:04 -070045 <activity
46 android:name=".ControlPanelPicker"
47 android:theme="@*android:style/Theme.Holo.Dialog.Alert"
48 android:excludeFromRecents="true" />
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070049 <receiver
50 android:name=".ControlPanelReceiver">
51 <intent-filter>
52 <action
53 android:name="android.media.action.OPEN_AUDIO_EFFECT_CONTROL_SESSION" />
54 <action
55 android:name="android.media.action.CLOSE_AUDIO_EFFECT_CONTROL_SESSION" />
56 <action
57 android:name="AudioEffect.ACTION_SET_PARAM" />
58 <action
59 android:name="AudioEffect.ACTION_GET_PARAM" />
60 <category
61 android:name="android.intent.category.DEFAULT" />
62 </intent-filter>
63 </receiver>
Marco Nelissenc897d9c2011-06-24 13:15:49 -070064
65 <receiver
66 android:name="Compatibility$Receiver">
67 <intent-filter>
Marco Nelissenc897d9c2011-06-24 13:15:49 -070068 <action android:name="android.intent.action.PACKAGE_ADDED" />
69 <data android:scheme="package" />
70 </intent-filter>
71 <intent-filter>
72 <action android:name="android.intent.action.PACKAGE_REPLACED" />
73 <data android:scheme="package" />
74 </intent-filter>
75 <intent-filter>
76 <action android:name="android.intent.action.PACKAGE_REMOVED" />
77 <data android:scheme="package" />
78 </intent-filter>
79 </receiver>
Marco Nelissend71bc9f2011-07-15 12:06:04 -070080 <service android:name="Compatibility$Service" android:exported="false" />
Marco Nelissenc897d9c2011-06-24 13:15:49 -070081 <activity
82 android:name="Compatibility$Redirector">
83 <intent-filter
84 android:priority="2147483647">
85 <action android:name="android.media.action.DISPLAY_AUDIO_EFFECT_CONTROL_PANEL" />
86 <category android:name="android.intent.category.DEFAULT" />
87 </intent-filter>
88 </activity>
89
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070090 </application>
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070091</manifest>