• Home
  • History
  • Annotate
  • 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
27    <application
28        android:icon="@drawable/icon"
29        android:label="@string/app_name"
30        android:theme="@android:style/Theme.NoTitleBar"
31        android:allowBackup="false">
32        <activity
33            android:name=".ActivityMusic"
34            android:theme="@android:style/Theme.DeviceDefault.DayNight"
35            android:exported="true"
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            android:exported="true">
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>
66
67        <receiver
68            android:name="Compatibility$Receiver"
69            android:exported="true">
70            <intent-filter>
71                <action android:name="android.intent.action.PACKAGE_ADDED" />
72                <data android:scheme="package" />
73            </intent-filter>
74            <intent-filter>
75                <action android:name="android.intent.action.PACKAGE_REPLACED" />
76                <data android:scheme="package" />
77            </intent-filter>
78            <intent-filter>
79                <action android:name="android.intent.action.PACKAGE_REMOVED" />
80                <data android:scheme="package" />
81            </intent-filter>
82        </receiver>
83        <service android:name="Compatibility$Service" android:exported="false" />
84        <service android:name="KeepAliveService" android:exported="true" />
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