Antti S. Lankila | 18072aa | 2010-08-01 18:47:36 +0300 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Antti S. Lankila | cd70766 | 2011-12-08 13:55:14 +0200 | [diff] [blame] | 3 | package="com.bel.android.dspmanager" android:versionCode="2" |
| 4 | android:versionName="2.0"> |
Antti S. Lankila | 18072aa | 2010-08-01 18:47:36 +0300 | [diff] [blame] | 5 | |
Antti S. Lankila | 66b8a95 | 2011-12-28 19:07:35 +0200 | [diff] [blame] | 6 | <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. Lankila | 127dfea | 2013-10-03 19:07:29 +0300 | [diff] [blame] | 12 | <application android:icon="@drawable/icon" android:label="@string/app_name" android:persistent="true"> |
xoomdev | 3eb1671 | 2013-08-18 18:00:58 -0500 | [diff] [blame] | 13 | <activity android:label="@string/app_name" android:name=".activity.DSPManager" android:theme="@style/AppTheme" |
Antti S. Lankila | 36c9496 | 2011-12-10 10:50:06 +0200 | [diff] [blame] | 14 | android:configChanges="orientation"> |
Antti S. Lankila | f4ee1f6 | 2010-08-07 03:27:39 +0300 | [diff] [blame] | 15 | <intent-filter> |
Antti S. Lankila | 2dabe11 | 2010-08-14 07:11:12 +0300 | [diff] [blame] | 16 | <action android:name="android.intent.action.MAIN" /> |
Steve Kondik | c9e2ff5 | 2010-08-08 23:36:19 -0400 | [diff] [blame] | 17 | <category android:name="android.intent.category.LAUNCHER" /> |
Antti S. Lankila | f4ee1f6 | 2010-08-07 03:27:39 +0300 | [diff] [blame] | 18 | </intent-filter> |
Antti S. Lankila | 871ae81 | 2011-06-21 01:38:39 +0300 | [diff] [blame] | 19 | <intent-filter> |
Antti S. Lankila | 36c9496 | 2011-12-10 10:50:06 +0200 | [diff] [blame] | 20 | <action android:name="android.media.action.DISPLAY_AUDIO_EFFECT_CONTROL_PANEL" /> |
kmobs | b828483 | 2010-08-11 15:08:53 -0500 | [diff] [blame] | 21 | <category android:name="android.intent.category.DEFAULT" /> |
| 22 | </intent-filter> |
Antti S. Lankila | 83d7a75 | 2010-08-06 06:29:52 +0300 | [diff] [blame] | 23 | </activity> |
| 24 | |
Antti S. Lankila | f4ee1f6 | 2010-08-07 03:27:39 +0300 | [diff] [blame] | 25 | <service android:exported="false" android:enabled="true" |
Antti S. Lankila | cd70766 | 2011-12-08 13:55:14 +0200 | [diff] [blame] | 26 | android:name=".service.HeadsetService"> |
Antti S. Lankila | f4ee1f6 | 2010-08-07 03:27:39 +0300 | [diff] [blame] | 27 | </service> |
Antti S. Lankila | 69d0553 | 2010-08-07 05:53:13 +0300 | [diff] [blame] | 28 | |
Antti S. Lankila | cd70766 | 2011-12-08 13:55:14 +0200 | [diff] [blame] | 29 | <receiver android:name=".receiver.BootCompletedReceiver"> |
Antti S. Lankila | 69d0553 | 2010-08-07 05:53:13 +0300 | [diff] [blame] | 30 | <intent-filter> |
| 31 | <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 32 | <category android:name="android.intent.category.DEFAULT" /> |
| 33 | </intent-filter> |
Antti S. Lankila | 69d0553 | 2010-08-07 05:53:13 +0300 | [diff] [blame] | 34 | </receiver> |
Antti S. Lankila | 83d7a75 | 2010-08-06 06:29:52 +0300 | [diff] [blame] | 35 | </application> |
Antti S. Lankila | 18072aa | 2010-08-01 18:47:36 +0300 | [diff] [blame] | 36 | </manifest> |