1<?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"> 21 22 <uses-permission 23 android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE" /> 24 <uses-permission 25 android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> 26 <uses-permission 27 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 android:allowBackup="false"> 33 <activity 34 android:name=".ActivityMusic" 35 android:theme="@android:style/Theme.Material.Light" 36 android:exported="true" 37 android:label="@string/eq_dialog_title"> 38 <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> 47 <activity 48 android:name=".ControlPanelPicker" 49 android:theme="@*android:style/Theme.Holo.Dialog.Alert" 50 android:excludeFromRecents="true" /> 51 <receiver 52 android:name=".ControlPanelReceiver" 53 android:exported="true"> 54 <intent-filter> 55 <action 56 android:name="android.media.action.OPEN_AUDIO_EFFECT_CONTROL_SESSION" /> 57 <action 58 android:name="android.media.action.CLOSE_AUDIO_EFFECT_CONTROL_SESSION" /> 59 <action 60 android:name="AudioEffect.ACTION_SET_PARAM" /> 61 <action 62 android:name="AudioEffect.ACTION_GET_PARAM" /> 63 <category 64 android:name="android.intent.category.DEFAULT" /> 65 </intent-filter> 66 </receiver> 67 68 <receiver 69 android:name="Compatibility$Receiver" 70 android:exported="true"> 71 <intent-filter> 72 <action android:name="android.intent.action.PACKAGE_ADDED" /> 73 <data android:scheme="package" /> 74 </intent-filter> 75 <intent-filter> 76 <action android:name="android.intent.action.PACKAGE_REPLACED" /> 77 <data android:scheme="package" /> 78 </intent-filter> 79 <intent-filter> 80 <action android:name="android.intent.action.PACKAGE_REMOVED" /> 81 <data android:scheme="package" /> 82 </intent-filter> 83 </receiver> 84 <service android:name="Compatibility$Service" android:exported="false" /> 85 <activity 86 android:name="Compatibility$Redirector" 87 android:exported="true"> 88 <intent-filter 89 android:priority="2147483647"> 90 <action android:name="android.media.action.DISPLAY_AUDIO_EFFECT_CONTROL_PANEL" /> 91 <category android:name="android.intent.category.DEFAULT" /> 92 </intent-filter> 93 </activity> 94 95 </application> 96</manifest> 97