blob: 14d6d455ed44dcee7340e20774c6235e60d187ff [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
27 android:name="android.permission.INTERNET" />
28 <uses-permission
29 android:name="android.permission.BLUETOOTH"></uses-permission>
30 <application
31 android:icon="@drawable/icon"
32 android:label="@string/app_name"
33 android:theme="@android:style/Theme.NoTitleBar">
34 <activity
35 android:name=".ActivityMusic"
gaoyl1997f20ee022015-05-28 11:19:34 +080036 android:theme="@android:style/Theme.Holo"
Marco Nelissen709c4152011-10-31 13:45:46 -070037 android:label="@string/eq_dialog_title">
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070038 <intent-filter>
39 <action
40 android:name="android.media.action.DISPLAY_AUDIO_EFFECT_CONTROL_PANEL" />
41 <category
42 android:name="android.intent.category.DEFAULT" />
43 <category
44 android:name="android.intent.category.CATEGORY_CONTENT_MUSIC" />
45 </intent-filter>
46 </activity>
Marco Nelissend71bc9f2011-07-15 12:06:04 -070047 <activity
48 android:name=".ControlPanelPicker"
49 android:theme="@*android:style/Theme.Holo.Dialog.Alert"
50 android:excludeFromRecents="true" />
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070051 <receiver
52 android:name=".ControlPanelReceiver">
53 <intent-filter>
54 <action
55 android:name="android.media.action.OPEN_AUDIO_EFFECT_CONTROL_SESSION" />
56 <action
57 android:name="android.media.action.CLOSE_AUDIO_EFFECT_CONTROL_SESSION" />
58 <action
59 android:name="AudioEffect.ACTION_SET_PARAM" />
60 <action
61 android:name="AudioEffect.ACTION_GET_PARAM" />
62 <category
63 android:name="android.intent.category.DEFAULT" />
64 </intent-filter>
65 </receiver>
Marco Nelissenc897d9c2011-06-24 13:15:49 -070066
67 <receiver
68 android:name="Compatibility$Receiver">
69 <intent-filter>
Marco Nelissenc897d9c2011-06-24 13:15:49 -070070 <action android:name="android.intent.action.PACKAGE_ADDED" />
71 <data android:scheme="package" />
72 </intent-filter>
73 <intent-filter>
74 <action android:name="android.intent.action.PACKAGE_REPLACED" />
75 <data android:scheme="package" />
76 </intent-filter>
77 <intent-filter>
78 <action android:name="android.intent.action.PACKAGE_REMOVED" />
79 <data android:scheme="package" />
80 </intent-filter>
81 </receiver>
Marco Nelissend71bc9f2011-07-15 12:06:04 -070082 <service android:name="Compatibility$Service" android:exported="false" />
Marco Nelissenc897d9c2011-06-24 13:15:49 -070083 <activity
84 android:name="Compatibility$Redirector">
85 <intent-filter
86 android:priority="2147483647">
87 <action android:name="android.media.action.DISPLAY_AUDIO_EFFECT_CONTROL_PANEL" />
88 <category android:name="android.intent.category.DEFAULT" />
89 </intent-filter>
90 </activity>
91
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070092 </application>
Marco Nelissen66f2cfe2011-06-23 14:05:10 -070093</manifest>