blob: 046f3b4e911a0a4e260c2791515a3df862848fdb [file] [log] [blame]
Nick Pelly09e9cba2009-07-10 18:45:13 -07001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -08003 package="com.android.bluetooth"
Jaikumar Ganeshff4f17b2011-12-19 15:54:50 -08004 android:sharedUserId="android.uid.bluetooth">
Jeff Hamilton5127e8e2010-02-11 16:25:47 -06005
6 <original-package android:name="com.android.bluetooth" />
7
Nick Pelly09e9cba2009-07-10 18:45:13 -07008 <!-- Allows access to the Bluetooth Share Manager -->
9 <permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE"
10 android:label="@string/permlab_bluetoothShareManager"
11 android:description="@string/permdesc_bluetoothShareManager"
12 android:protectionLevel="signature" />
Martijn Coenen8099f5e2012-04-06 13:47:52 -070013
14 <!-- Allows temporarily whitelisting Bluetooth addresses for sharing -->
15 <permission android:name="com.android.permission.WHITELIST_BLUETOOTH_DEVICE"
16 android:label="@string/permlab_bluetoothWhitelist"
17 android:description="@string/permdesc_bluetoothWhitelist"
18 android:protectionLevel="signature" />
19
Nick Pelly09e9cba2009-07-10 18:45:13 -070020 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
21 <uses-permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE" />
22 <uses-permission android:name="android.permission.INTERNET" />
23 <uses-permission android:name="android.permission.BLUETOOTH" />
24 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
Wei Wang871bee02014-02-28 14:45:31 -080025 <uses-permission android:name="android.permission.BLUETOOTH_PRIVILEGED" />
Casper Bonde326b5e62014-07-24 13:47:23 +020026 <uses-permission android:name="android.permission.BLUETOOTH_MAP" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070027 <uses-permission android:name="android.permission.WAKE_LOCK" />
28 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Jackson Fan2c282d52009-07-19 12:25:14 +080029 <uses-permission android:name="android.permission.READ_CONTACTS" />
Daniel Lehmann4425b782012-03-09 20:43:54 -080030 <uses-permission android:name="android.permission.READ_CALL_LOG" />
Jackson Fan2c282d52009-07-19 12:25:14 +080031 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
32 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Andres Moralescfaffa82014-03-11 08:56:54 -070033 <uses-permission android:name="android.permission.NFC_HANDOVER_STATUS" />
Matthew Xie6c91bc02012-02-16 18:47:53 -080034 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
Prem Kumar87896dd2014-04-14 10:16:15 -070035 <uses-permission android:name="android.permission.WRITE_APN_SETTINGS" />
Jaikumar Ganesha11b96d2012-02-27 10:30:33 -080036 <uses-permission android:name="android.permission.NET_ADMIN" />
Matthew Xie6c91bc02012-02-16 18:47:53 -080037 <uses-permission android:name="android.permission.CALL_PRIVILEGED" />
38 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
fredc6654f5c2012-04-12 00:18:52 -070039 <uses-permission android:name="android.permission.NET_TUNNELING" />
40 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
41 <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
Matthew Xie09a49912012-07-12 15:55:22 -070042 <uses-permission android:name="android.permission.CONNECTIVITY_INTERNAL" />
Matthew Xie0e463622012-09-26 00:12:26 -070043 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
Matthew Xie344036b2012-10-01 21:49:48 -070044 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" />
45 <uses-permission android:name="android.permission.BLUETOOTH_STACK" />
Zhihai Xu37510152012-10-08 18:04:32 -070046 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/>
47 <uses-permission android:name="android.permission.MANAGE_USERS"/>
Martijn Coenen19d8d542012-10-30 15:15:05 -070048 <uses-permission android:name="com.google.android.gallery3d.permission.GALLERY_PROVIDER"/>
49 <uses-permission android:name="com.android.gallery3d.permission.GALLERY_PROVIDER"/>
Matthew Xiefd6603b2013-07-18 18:18:36 -070050 <uses-permission android:name="android.permission.MMS_SEND_OUTBOX_MSG"/>
51 <uses-permission android:name="android.permission.RECEIVE_SMS" />
Matthew Xiefd6603b2013-07-18 18:18:36 -070052 <uses-permission android:name="android.permission.SEND_SMS" />
53 <uses-permission android:name="android.permission.READ_SMS" />
54 <uses-permission android:name="android.permission.WRITE_SMS" />
55 <uses-permission android:name="android.permission.READ_CONTACTS" />
Kim Schulz70be0052013-08-22 10:57:59 +020056 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
Jean-Michel Trivi5509d362013-09-17 20:21:22 -070057 <uses-permission android:name="android.permission.MEDIA_CONTENT_CONTROL" />
Nitin Shivpurebfdb2492014-06-06 15:06:57 +053058 <uses-permission android:name="android.permission.MANAGE_DOCUMENTS" />
Zhihai Xu37510152012-10-08 18:04:32 -070059
fredcc7a57f32012-05-07 14:20:35 -070060 <!-- For PBAP Owner Vcard Info -->
61 <uses-permission android:name="android.permission.READ_PROFILE"/>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080062 <application
fredc6654f5c2012-04-12 00:18:52 -070063 android:name=".btservice.AdapterApp"
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080064 android:icon="@drawable/bt_share"
fredc6654f5c2012-04-12 00:18:52 -070065 android:persistent="false"
Alexandra Gherghina16fab072014-04-11 11:28:03 +000066 android:label="@string/app_name">
Nick Pelly09e9cba2009-07-10 18:45:13 -070067 <uses-library android:name="javax.obex" />
Tao Liejun6769b592009-07-14 15:55:04 -070068 <provider android:name=".opp.BluetoothOppProvider"
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080069 android:authorities="com.android.bluetooth.opp"
Nick Kralevichea0b4f92012-07-30 12:41:30 -070070 android:exported="true"
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080071 android:process="@string/process">
Tao Liejun1ac55072009-08-07 15:01:24 +080072 <path-permission
Matthew Xie2819c1d2013-12-06 12:19:36 -080073 android:pathPrefix="/btopp"
Tao Liejun1ac55072009-08-07 15:01:24 +080074 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE" />
75 </provider>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080076 <service
77 android:process="@string/process"
fredc6654f5c2012-04-12 00:18:52 -070078 android:name = ".btservice.AdapterService">
79 <intent-filter>
80 <action android:name="android.bluetooth.IBluetooth" />
81 </intent-filter>
82 </service>
83 <service
84 android:process="@string/process"
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080085 android:name=".opp.BluetoothOppService"
fredca7e8ef32012-05-10 22:07:32 -070086 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE"
87 android:enabled="@bool/profile_supported_opp"/>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080088 <receiver
89 android:process="@string/process"
Kausik Sinnaswamyd5708932012-04-09 20:02:49 +053090 android:exported="true"
fredca7e8ef32012-05-10 22:07:32 -070091 android:name=".opp.BluetoothOppReceiver"
92 android:enabled="@bool/profile_supported_opp">
Nick Pelly09e9cba2009-07-10 18:45:13 -070093 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -070094 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
jhtop.kimef697b02011-08-02 10:59:35 +090095 <!--action android:name="android.intent.action.BOOT_COMPLETED" /-->
Jake Hamby1ed96d52011-01-25 19:46:26 -080096 <action android:name="android.btopp.intent.action.OPEN_RECEIVED_FILES" />
Martijn Coenen8099f5e2012-04-06 13:47:52 -070097 </intent-filter>
98 </receiver>
99 <receiver
100 android:process="@string/process"
101 android:name=".opp.BluetoothOppHandoverReceiver"
102 android:permission="com.android.permission.WHITELIST_BLUETOOTH_DEVICE">
103 <intent-filter>
104 <action android:name="android.btopp.intent.action.WHITELIST_DEVICE" />
Martijn Coenen584dfb22012-05-16 13:58:02 -0700105 <action android:name="android.btopp.intent.action.STOP_HANDOVER_TRANSFER" />
Nick Pelly09e9cba2009-07-10 18:45:13 -0700106 </intent-filter>
Martijn Coenen03f25a22012-05-18 13:43:30 -0700107 <intent-filter>
Andres Moralescfaffa82014-03-11 08:56:54 -0700108 <action android:name="android.nfc.handover.intent.action.HANDOVER_SEND" />
Martijn Coenen03f25a22012-05-18 13:43:30 -0700109 <category android:name="android.intent.category.DEFAULT" />
110 <data android:mimeType="*/*" />
111 </intent-filter>
112 <intent-filter>
Andres Moralescfaffa82014-03-11 08:56:54 -0700113 <action android:name="android.nfc.handover.intent.action.HANDOVER_SEND_MULTIPLE" />
Martijn Coenen03f25a22012-05-18 13:43:30 -0700114 <category android:name="android.intent.category.DEFAULT" />
115 <data android:mimeType="*/*" />
116 </intent-filter>
Nick Pelly09e9cba2009-07-10 18:45:13 -0700117 </receiver>
Tao Liejun6769b592009-07-14 15:55:04 -0700118 <activity android:name=".opp.BluetoothOppLauncherActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -0700119 android:process="@string/process"
fredca7e8ef32012-05-10 22:07:32 -0700120 android:theme="@android:style/Theme.Holo.Dialog"
121 android:label="@string/bt_share_picker_label"
122 android:enabled="@bool/profile_supported_opp">
Nick Pelly09e9cba2009-07-10 18:45:13 -0700123 <intent-filter>
124 <action android:name="android.intent.action.SEND" />
125 <category android:name="android.intent.category.DEFAULT" />
126 <data android:mimeType="image/*" />
127 <data android:mimeType="video/*" />
Jackson Fan239bc522009-07-27 15:58:22 +0800128 <data android:mimeType="audio/*" />
Lixin Yue6ef730f2009-12-17 16:31:22 +0800129 <data android:mimeType="text/x-vcard" />
Tao Liejunfb8562d2009-11-18 11:02:59 -0600130 <data android:mimeType="text/plain" />
131 <data android:mimeType="text/html" />
Matthew Xiec0b728a2013-07-31 00:52:16 -0700132 <data android:mimeType="text/xml" />
Tao Liejunfb8562d2009-11-18 11:02:59 -0600133 <data android:mimeType="application/zip" />
134 <data android:mimeType="application/vnd.ms-excel" />
135 <data android:mimeType="application/msword" />
136 <data android:mimeType="application/vnd.ms-powerpoint" />
137 <data android:mimeType="application/pdf" />
Sungmin Choi5d574612012-11-30 15:59:30 +0900138 <data android:mimeType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />
139 <data android:mimeType="application/vnd.openxmlformats-officedocument.wordprocessingml.document" />
140 <data android:mimeType="application/vnd.openxmlformats-officedocument.presentationml.presentation" />
Sungmin Choiab5a7202014-12-18 15:42:20 +0900141 <data android:mimeType="application/x-hwp" />
Nick Pelly09e9cba2009-07-10 18:45:13 -0700142 </intent-filter>
143 <intent-filter>
Tao Liejun1ac55072009-08-07 15:01:24 +0800144 <action android:name="android.intent.action.SEND_MULTIPLE" />
Nick Pelly09e9cba2009-07-10 18:45:13 -0700145 <category android:name="android.intent.category.DEFAULT" />
146 <data android:mimeType="image/*" />
147 <data android:mimeType="video/*" />
148 <data android:mimeType="x-mixmedia/*" />
Lixin Yue6ef730f2009-12-17 16:31:22 +0800149 <data android:mimeType="text/x-vcard" />
Nick Pelly09e9cba2009-07-10 18:45:13 -0700150 </intent-filter>
151 <intent-filter>
152 <action android:name="android.btopp.intent.action.OPEN" />
153 <category android:name="android.intent.category.DEFAULT" />
154 <data android:mimeType="vnd.android.cursor.item/vnd.android.btopp" />
155 </intent-filter>
156 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +0800157 <activity android:name=".opp.BluetoothOppBtEnableActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -0700158 android:process="@string/process"
Lixin Yuedc3bacd2009-09-21 20:36:16 +0800159 android:excludeFromRecents="true"
fredca7e8ef32012-05-10 22:07:32 -0700160 android:theme="@*android:style/Theme.Holo.Dialog.Alert"
161 android:enabled="@bool/profile_supported_opp">
Nick Pelly09e9cba2009-07-10 18:45:13 -0700162 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +0800163 <activity android:name=".opp.BluetoothOppBtErrorActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -0700164 android:process="@string/process"
Lixin Yuedc3bacd2009-09-21 20:36:16 +0800165 android:excludeFromRecents="true"
Jaikumar Ganeshb27df662011-01-10 15:21:53 -0800166 android:theme="@*android:style/Theme.Holo.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -0700167 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +0800168 <activity android:name=".opp.BluetoothOppBtEnablingActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -0700169 android:process="@string/process"
Lixin Yuedc3bacd2009-09-21 20:36:16 +0800170 android:excludeFromRecents="true"
fredca7e8ef32012-05-10 22:07:32 -0700171 android:theme="@*android:style/Theme.Holo.Dialog.Alert"
172 android:enabled="@bool/profile_supported_opp">
Lixin Yuedc3bacd2009-09-21 20:36:16 +0800173 </activity>
Jaikumar Ganesh53647ab2009-09-11 16:20:52 -0700174 <activity android:name=".opp.BluetoothOppIncomingFileConfirmActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -0700175 android:process="@string/process"
Jaikumar Ganesh53647ab2009-09-11 16:20:52 -0700176 android:excludeFromRecents="true"
fredca7e8ef32012-05-10 22:07:32 -0700177 android:theme="@*android:style/Theme.Holo.Dialog.Alert"
178 android:enabled="@bool/profile_supported_opp">
Nick Pelly09e9cba2009-07-10 18:45:13 -0700179 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +0800180 <activity android:name=".opp.BluetoothOppTransferActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -0700181 android:process="@string/process"
Lixin Yuedc3bacd2009-09-21 20:36:16 +0800182 android:excludeFromRecents="true"
fredca7e8ef32012-05-10 22:07:32 -0700183 android:theme="@*android:style/Theme.Holo.Dialog.Alert"
184 android:enabled="@bool/profile_supported_opp">
Nick Pelly09e9cba2009-07-10 18:45:13 -0700185 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -0700186 <activity android:name=".opp.BluetoothOppLiveFolder"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -0700187 android:process="@string/process"
Mike Cleronae70ee22009-09-29 13:03:26 -0700188 android:icon="@drawable/ic_launcher_folder_bluetooth"
fredca7e8ef32012-05-10 22:07:32 -0700189 android:label="@string/btopp_live_folder"
190 android:enabled="@bool/profile_supported_opp">
Nick Pelly09e9cba2009-07-10 18:45:13 -0700191 <intent-filter>
192 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
193 <category android:name="android.intent.category.DEFAULT" />
194 </intent-filter>
195 </activity>
Lixin Yue5cc61792010-02-26 17:35:23 +0800196 <activity android:name=".opp.BluetoothOppTransferHistory"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -0700197 android:process="@string/process"
Lixin Yue5cc61792010-02-26 17:35:23 +0800198 android:label=""
199 android:excludeFromRecents="true"
fredca7e8ef32012-05-10 22:07:32 -0700200 android:configChanges="orientation|keyboardHidden"
201 android:enabled="@bool/profile_supported_opp">
Lixin Yue5cc61792010-02-26 17:35:23 +0800202 </activity>
Jackson Fan2c282d52009-07-19 12:25:14 +0800203 <activity android:name=".pbap.BluetoothPbapActivity"
Jaikumar Ganesh0bd5f7b2010-03-24 10:36:06 -0700204 android:process="@string/process"
Lixin Yuedc3bacd2009-09-21 20:36:16 +0800205 android:excludeFromRecents="true"
fredca7e8ef32012-05-10 22:07:32 -0700206 android:theme="@*android:style/Theme.Holo.Dialog.Alert"
207 android:enabled="@bool/profile_supported_pbap">
Jackson Fan2c282d52009-07-19 12:25:14 +0800208 <intent-filter>
Lixin Yued8961622009-07-28 10:45:23 +0800209 <category android:name="android.intent.category.DEFAULT" />
Jackson Fan2c282d52009-07-19 12:25:14 +0800210 </intent-filter>
211 </activity>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -0800212 <service
213 android:process="@string/process"
fredca7e8ef32012-05-10 22:07:32 -0700214 android:name=".pbap.BluetoothPbapService"
215 android:enabled="@bool/profile_supported_pbap" >
Jaikumar Ganeshb8c66032010-10-07 00:39:15 +0200216 <intent-filter>
217 <action android:name="android.bluetooth.IBluetoothPbap" />
218 </intent-filter>
Jackson Fan2c282d52009-07-19 12:25:14 +0800219 </service>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -0800220 <receiver
221 android:process="@string/process"
Kausik Sinnaswamyd5708932012-04-09 20:02:49 +0530222 android:exported="true"
fredca7e8ef32012-05-10 22:07:32 -0700223 android:name=".pbap.BluetoothPbapReceiver"
224 android:enabled="@bool/profile_supported_pbap">
Jackson Fan2c282d52009-07-19 12:25:14 +0800225 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -0700226 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED"/>
Matthew Xie7eab97d2011-06-28 13:53:56 -0700227 <action android:name="android.bluetooth.device.action.CONNECTION_ACCESS_REPLY" />
Hemant Gupta42163872014-05-08 12:45:38 +0530228 <action android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
Matthew Xie7eab97d2011-06-28 13:53:56 -0700229 <category android:name="android.intent.category.DEFAULT" />
Jackson Fan2c282d52009-07-19 12:25:14 +0800230 </intent-filter>
231 </receiver>
Matthew Xiefd6603b2013-07-18 18:18:36 -0700232 <service
233 android:process="@string/process"
234 android:name=".map.BluetoothMapService"
235 android:enabled="@bool/profile_supported_map" >
236 <intent-filter>
237 <action android:name="android.bluetooth.IBluetoothMap" />
Casper Bonde326b5e62014-07-24 13:47:23 +0200238 <action android:name="android.btmap.intent.action.SHOW_MAPS_EMAIL_SETTINGS" />
239 <action android:name="com.android.bluetooth.map.USER_CONFIRM_TIMEOUT"/>
Matthew Xiefd6603b2013-07-18 18:18:36 -0700240 </intent-filter>
241 </service>
Casper Bonde326b5e62014-07-24 13:47:23 +0200242 <activity android:name=".map.BluetoothMapEmailSettings"
243 android:process="@string/process"
244 android:label="@string/bluetooth_map_email_settings_title"
245 android:excludeFromRecents="true"
246 android:configChanges="orientation|keyboardHidden"
247 android:enabled="@bool/profile_supported_map">
248 </activity>
Matthew Xie6c91bc02012-02-16 18:47:53 -0800249 <service
250 android:process="@string/process"
Ganesh Ganapathi Batta03b83862013-02-05 15:38:27 -0800251 android:name = ".gatt.GattService"
252 android:enabled="@bool/profile_supported_gatt">
253 <intent-filter>
254 <action android:name="android.bluetooth.IBluetoothGatt" />
255 </intent-filter>
256 </service>
257 <service
258 android:process="@string/process"
fredca7e8ef32012-05-10 22:07:32 -0700259 android:name = ".hfp.HeadsetService"
260 android:enabled="@bool/profile_supported_hs_hfp">
Matthew Xie6c91bc02012-02-16 18:47:53 -0800261 <intent-filter>
262 <action android:name="android.bluetooth.IBluetoothHeadset" />
263 </intent-filter>
264 </service>
265 <service
266 android:process="@string/process"
fredca7e8ef32012-05-10 22:07:32 -0700267 android:name = ".a2dp.A2dpService"
268 android:enabled="@bool/profile_supported_a2dp">
Matthew Xie6c91bc02012-02-16 18:47:53 -0800269 <intent-filter>
270 <action android:name="android.bluetooth.IBluetoothA2dp" />
271 </intent-filter>
272 </service>
Matthew Xie35207a52012-03-21 23:11:40 -0700273 <service
274 android:process="@string/process"
Mike Lockwoodc030f082014-06-07 14:04:40 -0700275 android:name = ".a2dp.A2dpSinkService"
276 android:enabled="@bool/profile_supported_a2dp_sink">
277 <intent-filter>
278 <action android:name="android.bluetooth.IBluetoothA2dpSink" />
279 </intent-filter>
280 </service>
281 <service
282 android:process="@string/process"
Mike Lockwood066ad9e12014-06-06 13:04:55 -0700283 android:name = ".avrcp.AvrcpControllerService"
284 android:enabled="@bool/profile_supported_avrcp_controller">
285 <intent-filter>
286 <action android:name="android.bluetooth.IBluetoothAvrcpController" />
287 </intent-filter>
288 </service>
289 <service
290 android:process="@string/process"
fredca7e8ef32012-05-10 22:07:32 -0700291 android:name = ".hid.HidService"
292 android:enabled="@bool/profile_supported_hid">
Matthew Xie35207a52012-03-21 23:11:40 -0700293 <intent-filter>
294 <action android:name="android.bluetooth.IBluetoothInputDevice" />
295 </intent-filter>
296 </service>
Matthew Xie676cb1b2012-03-22 17:32:29 -0700297 <service
298 android:process="@string/process"
fredca7e8ef32012-05-10 22:07:32 -0700299 android:name = ".hdp.HealthService"
300 android:enabled="@bool/profile_supported_hdp">
Matthew Xie676cb1b2012-03-22 17:32:29 -0700301 <intent-filter>
302 <action android:name="android.bluetooth.IBluetoothHealth" />
303 </intent-filter>
304 </service>
fredc6654f5c2012-04-12 00:18:52 -0700305 <service
306 android:process="@string/process"
fredca7e8ef32012-05-10 22:07:32 -0700307 android:name = ".pan.PanService"
308 android:enabled="@bool/profile_supported_pan">
fredc6654f5c2012-04-12 00:18:52 -0700309 <intent-filter>
310 <action android:name="android.bluetooth.IBluetoothPan" />
311 </intent-filter>
312 </service>
Hemant Guptaaebc7262013-08-19 18:54:29 +0530313 <service
314 android:process="@string/process"
Mike Lockwood8d536f32014-06-12 12:07:01 -0700315 android:name = ".hfpclient.HeadsetClientService"
Hemant Guptaaebc7262013-08-19 18:54:29 +0530316 android:enabled="@bool/profile_supported_hfpclient">
317 <intent-filter>
Mike Lockwood8d536f32014-06-12 12:07:01 -0700318 <action android:name="android.bluetooth.IBluetoothHeadsetClient" />
Hemant Guptaaebc7262013-08-19 18:54:29 +0530319 </intent-filter>
320 </service>
Nick Pelly09e9cba2009-07-10 18:45:13 -0700321 </application>
322</manifest>