blob: 6b2c6d595bf16426cbab1f60fc9285f9be8fd57d [file] [log] [blame]
Pramod Sivaraman4a8e3852013-05-15 17:25:22 +05301<?xml version="1.0" encoding="utf-8"?>
2<!--
3/* Copyright (c) 2013, The Linux Foundation. All rights reserved.
4
5Redistribution and use in source and binary forms, with or without
6modification, are permitted provided that the following conditions are
7met:
8 * Redistributions of source code must retain the above copyright
9 notice, this list of conditions and the following disclaimer.
10 * Redistributions in binary form must reproduce the above
11 copyright notice, this list of conditions and the following
12 disclaimer in the documentation and/or other materials provided
13 with the distribution.
14 * Neither the name of The Linux Foundation nor the names of its
15 contributors may be used to endorse or promote products derived
16 from this software without specific prior written permission.
17
18THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
19WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
20MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
21ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
22BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
25BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
27OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
28IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29*/
30-->
31<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Pramod Sivaraman05b58082013-06-18 18:30:40 +053032 package="org.codeaurora.bluetooth"
Pramod Sivaraman4a8e3852013-05-15 17:25:22 +053033 android:sharedUserId="android.uid.bluetooth">
34
Pramod Sivaraman05b58082013-06-18 18:30:40 +053035 <original-package android:name="org.codeaurora.bluetooth" />
Pramod Sivaraman4a8e3852013-05-15 17:25:22 +053036
37 <uses-permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE" />
38 <uses-permission android:name="android.permission.BLUETOOTH" />
39 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
40 <uses-permission android:name="android.permission.WAKE_LOCK" />
41 <uses-permission android:name="android.permission.CONNECTIVITY_INTERNAL" />
42 <uses-permission android:name="android.permission.BLUETOOTH_STACK" />
Ashwini Munigalae38b5662013-06-12 17:05:14 +053043 <uses-permission android:name="android.permission.READ_SMS"></uses-permission>
44 <uses-permission android:name="android.permission.WRITE_SMS"></uses-permission>
45 <uses-permission android:name="android.permission.BROADCAST_SMS"></uses-permission>
46 <uses-permission android:name="android.permission.RECEIVE_SMS"></uses-permission>
47 <uses-permission android:name="android.permission.SEND_SMS"></uses-permission>
48 <uses-permission android:name="android.permission.MMS_PUSH"></uses-permission>
49 <uses-permission android:name="com.android.email.permission.ACCESS_PROVIDER"/>
50 <uses-permission android:name="com.android.email.permission.READ_ATTACHMENT"/>
Ashwini Munigala41c7ab12013-09-18 20:10:53 +053051 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
52 <uses-permission android:name="android.permission.WRITE_MEDIA_STORAGE" />
Nitin Shivpure22c1a922013-10-18 19:05:08 +053053 <application android:process="com.android.bluetooth">
Kiran Kelagerifac2edf2014-05-29 16:23:46 -070054 <uses-library android:name="com.quicinc.wbc"
55 android:required="false" />
Ashwini Munigalae38b5662013-06-12 17:05:14 +053056 <uses-library android:name="javax.obex" />
Satish kumar sugasi9a41f622013-11-21 16:48:40 -080057 <uses-feature android:name="android.hardware.bluetooth_le" android:required="true" />
Hemant Gupta8bc5d912014-07-14 16:35:54 +053058<!--
Pramod Sivaraman4a8e3852013-05-15 17:25:22 +053059 <service
60 android:name = ".btcservice.BTCService">
61 </service>
62 <receiver
63 android:exported="true"
64 android:name=".btcservice.BTCEventProvider">
65 <intent-filter>
66 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
67 <action android:name="android.bluetooth.adapter.action.DISCOVERY_STARTED" />
68 <action android:name="android.bluetooth.adapter.action.DISCOVERY_FINISHED" />
69 <action android:name="android.bluetooth.device.action.ACL_CONNECTED" />
70 <action android:name="android.bluetooth.device.action.ACL_DISCONNECTED" />
71 <action android:name="android.bluetooth.headset.profile.action.CONNECTION_STATE_CHANGED" />
72 <action android:name="android.bluetooth.headset.profile.action.AUDIO_STATE_CHANGED" />
73 <action android:name="android.bluetooth.a2dp.profile.action.CONNECTION_STATE_CHANGED" />
74 <action android:name="android.bluetooth.a2dp.profile.action.PLAYING_STATE_CHANGED" />
75 <action android:name="android.bluetooth.input.profile.action.CONNECTION_STATE_CHANGED" />
76 </intent-filter>
77 </receiver>
Ashwini Munigala41c7ab12013-09-18 20:10:53 +053078 <activity android:name=".map.BluetoothMasActivity"
Ashwini Munigalae38b5662013-06-12 17:05:14 +053079 android:process="@string/process"
80 android:excludeFromRecents="true"
81 android:enabled="@bool/profile_supported_map"
82 android:theme="@*android:style/Theme.Holo.Dialog.Alert">
83 <intent-filter>
84 <category android:name="android.intent.category.DEFAULT" />
85 </intent-filter>
86 </activity>
87 <service
88 android:process="@string/process"
89 android:enabled="@bool/profile_supported_map"
90 android:name=".map.BluetoothMasService" >
91 </service>
92 <receiver
93 android:process="@string/process"
94 android:enabled="@bool/profile_supported_map"
95 android:name=".map.BluetoothMasReceiver">
96 <intent-filter>
97 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED"/>
98 <action android:name="android.bluetooth.device.action.BOND_STATE_CHANGED"/>
99 <action android:name="android.bluetooth.device.action.ACL_DISCONNECTED"/>
100 </intent-filter>
101 </receiver>
Srinu Jella773e51d2013-07-15 18:50:20 +0530102 <activity android:name=".sap.BluetoothSapPermissionActivity"
103 android:process="@string/process"
104 android:excludeFromRecents="true"
105 android:enabled="@bool/profile_supported_sap"
106 android:theme="@*android:style/Theme.Holo.Dialog.Alert">
107 <intent-filter>
108 <category android:name="android.intent.category.DEFAULT" />
109 </intent-filter>
110 </activity>
111 <service
112 android:process="@string/process"
113 android:name=".sap.BluetoothSapService"
114 android:enabled="@bool/profile_supported_sap" >
115 <intent-filter>
116 <action android:name="android.bluetooth.IBluetoothSap" />
117 </intent-filter>
118 </service>
119 <receiver
120 android:process="@string/process"
121 android:enabled="@bool/profile_supported_sap"
122 android:name=".sap.BluetoothSapReceiver">
123 <intent-filter>
124 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED"/>
125 <action android:name="android.bluetooth.device.action.BOND_STATE_CHANGED"/>
126 <action android:name="android.bluetooth.device.action.ACL_DISCONNECTED"/>
127 </intent-filter>
128 </receiver>
Hemant Guptabe0a0052015-07-08 22:32:35 +0530129-->
130 <activity android:name=".ftp.BluetoothFtpActivity"
131 android:process="@string/process"
132 android:excludeFromRecents="true"
133 android:enabled="@bool/profile_supported_ftp"
134 android:theme="@*android:style/Theme.Holo.Dialog.Alert">
135 <intent-filter>
136 <category android:name="android.intent.category.DEFAULT" />
137 </intent-filter>
138 </activity>
139 <service
140 android:process="@string/process"
141 android:name=".ftp.BluetoothFtpService"
142 android:enabled="@bool/profile_supported_ftp" >
143 </service>
144 <receiver
145 android:process="@string/process"
146 android:enabled="@bool/profile_supported_ftp"
147 android:name=".ftp.BluetoothFtpReceiver">
148 <intent-filter>
149 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED"/>
150 <action android:name="android.bluetooth.device.action.BOND_STATE_CHANGED"/>
151 <action android:name="android.bluetooth.device.action.ACL_DISCONNECTED"/>
152 </intent-filter>
153 </receiver>
Srinu Jellaf1ada3b2013-09-12 18:08:03 +0530154 <activity android:name=".dun.BluetoothDunPermissionActivity"
155 android:process="@string/process"
156 android:excludeFromRecents="true"
157 android:enabled="@bool/profile_supported_dun"
158 android:theme="@*android:style/Theme.Holo.Dialog.Alert">
159 <intent-filter>
160 <category android:name="android.intent.category.DEFAULT" />
161 </intent-filter>
162 </activity>
163 <service
164 android:process="@string/process"
165 android:name=".dun.BluetoothDunService"
166 android:enabled="@bool/profile_supported_dun" >
167 <intent-filter>
168 <action android:name="android.bluetooth.IBluetoothDun" />
169 </intent-filter>
170 </service>
171 <receiver
172 android:process="@string/process"
173 android:enabled="@bool/profile_supported_dun"
174 android:name=".dun.BluetoothDunReceiver">
175 <intent-filter>
176 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED"/>
177 <action android:name="android.bluetooth.device.action.BOND_STATE_CHANGED"/>
178 <action android:name="android.bluetooth.device.action.ACL_DISCONNECTED"/>
179 </intent-filter>
180 </receiver>
Satish kumar sugasi9a41f622013-11-21 16:48:40 -0800181 <service
182 android:name=".pxpservice.PxpMonitorService"
183 android:process="@string/process"
184 android:enabled="true" >
185 <intent-filter>
186 <action android:name="org.codeaurora.bluetooth.pxpservice.PxpMonitorService" />
187 </intent-filter>
188 </service>
Pramod Sivaraman4a8e3852013-05-15 17:25:22 +0530189 </application>
190</manifest>