blob: f3424c3a17f19a2913fa4a0b205e7a646d2f1b57 [file] [log] [blame]
Antti S. Lankila18072aa2010-08-01 18:47:36 +03001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Antti S. Lankilacd707662011-12-08 13:55:14 +02003 package="com.bel.android.dspmanager" android:versionCode="2"
4 android:versionName="2.0">
Antti S. Lankila18072aa2010-08-01 18:47:36 +03005
Antti S. Lankila66b8a952011-12-28 19:07:35 +02006 <uses-sdk android:minSdkVersion="14"/>
7
8 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"></uses-permission>
9 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"></uses-permission>
10 <uses-permission android:name="android.permission.BLUETOOTH"></uses-permission>
11
Antti S. Lankila127dfea2013-10-03 19:07:29 +030012 <application android:icon="@drawable/icon" android:label="@string/app_name" android:persistent="true">
xoomdev3eb16712013-08-18 18:00:58 -050013 <activity android:label="@string/app_name" android:name=".activity.DSPManager" android:theme="@style/AppTheme"
Antti S. Lankila36c94962011-12-10 10:50:06 +020014 android:configChanges="orientation">
Antti S. Lankilaf4ee1f62010-08-07 03:27:39 +030015 <intent-filter>
Antti S. Lankila2dabe112010-08-14 07:11:12 +030016 <action android:name="android.intent.action.MAIN" />
Steve Kondikc9e2ff52010-08-08 23:36:19 -040017 <category android:name="android.intent.category.LAUNCHER" />
Antti S. Lankilaf4ee1f62010-08-07 03:27:39 +030018 </intent-filter>
Antti S. Lankila871ae812011-06-21 01:38:39 +030019 <intent-filter>
Antti S. Lankila36c94962011-12-10 10:50:06 +020020 <action android:name="android.media.action.DISPLAY_AUDIO_EFFECT_CONTROL_PANEL" />
kmobsb8284832010-08-11 15:08:53 -050021 <category android:name="android.intent.category.DEFAULT" />
22 </intent-filter>
Antti S. Lankila83d7a752010-08-06 06:29:52 +030023 </activity>
24
Antti S. Lankilaf4ee1f62010-08-07 03:27:39 +030025 <service android:exported="false" android:enabled="true"
Antti S. Lankilacd707662011-12-08 13:55:14 +020026 android:name=".service.HeadsetService">
Antti S. Lankilaf4ee1f62010-08-07 03:27:39 +030027 </service>
Antti S. Lankila69d05532010-08-07 05:53:13 +030028
Antti S. Lankilacd707662011-12-08 13:55:14 +020029 <receiver android:name=".receiver.BootCompletedReceiver">
Antti S. Lankila69d05532010-08-07 05:53:13 +030030 <intent-filter>
31 <action android:name="android.intent.action.BOOT_COMPLETED" />
32 <category android:name="android.intent.category.DEFAULT" />
33 </intent-filter>
Antti S. Lankila69d05532010-08-07 05:53:13 +030034 </receiver>
Antti S. Lankila83d7a752010-08-06 06:29:52 +030035 </application>
Antti S. Lankila18072aa2010-08-01 18:47:36 +030036</manifest>