Home | History | Annotate | Download | only in MusicFX
      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.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"
     36             android:theme="@android:style/Theme.Holo"
     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             <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             <intent-filter>
     70                 <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>
     82         <service android:name="Compatibility$Service" android:exported="false" />
     83         <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 
     92     </application>
     93 </manifest>
     94