• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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:label="@string/eq_dialog_title">
37            <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>
46        <activity
47            android:name=".ControlPanelPicker"
48            android:theme="@*android:style/Theme.Holo.Dialog.Alert"
49            android:excludeFromRecents="true" />
50        <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>
65
66        <receiver
67            android:name="Compatibility$Receiver">
68            <intent-filter>
69                <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>
81        <service android:name="Compatibility$Service" android:exported="false" />
82        <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
91    </application>
92</manifest>
93