blob: bbba0df9031994a6a701a4afcfd07eb71c3c9fe5 [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"
4 android:sharedUserId="@string/sharedUserId">
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" />
13 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
14 <uses-permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE" />
15 <uses-permission android:name="android.permission.INTERNET" />
16 <uses-permission android:name="android.permission.BLUETOOTH" />
17 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
18 <uses-permission android:name="android.permission.WAKE_LOCK" />
19 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Jackson Fan2c282d52009-07-19 12:25:14 +080020 <uses-permission android:name="android.permission.READ_CONTACTS" />
21 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
22 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080023 <application
24 android:icon="@drawable/bt_share"
Nick Pelly09e9cba2009-07-10 18:45:13 -070025 android:label="@string/app_name">
26 <uses-library android:name="javax.obex" />
Tao Liejun6769b592009-07-14 15:55:04 -070027 <provider android:name=".opp.BluetoothOppProvider"
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080028 android:authorities="com.android.bluetooth.opp"
29 android:process="@string/process">
Tao Liejun1ac55072009-08-07 15:01:24 +080030 <path-permission
31 android:path="/btopp"
32 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE" />
33 </provider>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080034 <service
35 android:process="@string/process"
36 android:name=".opp.BluetoothOppService"
Nick Pelly09e9cba2009-07-10 18:45:13 -070037 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE" />
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080038 <receiver
39 android:process="@string/process"
40 android:name=".opp.BluetoothOppReceiver">
Nick Pelly09e9cba2009-07-10 18:45:13 -070041 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -070042 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070043 <action android:name="android.intent.action.BOOT_COMPLETED" />
Jake Hamby1ed96d52011-01-25 19:46:26 -080044 <action android:name="android.btopp.intent.action.OPEN_RECEIVED_FILES" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070045 </intent-filter>
46 </receiver>
Tao Liejun6769b592009-07-14 15:55:04 -070047 <activity android:name=".opp.BluetoothOppLauncherActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070048 android:process="@string/process"
Jaikumar Ganeshb27df662011-01-10 15:21:53 -080049 android:theme="@android:style/Theme.Holo.Dialog" android:label="@string/bt_share_picker_label">
Nick Pelly09e9cba2009-07-10 18:45:13 -070050 <intent-filter>
51 <action android:name="android.intent.action.SEND" />
52 <category android:name="android.intent.category.DEFAULT" />
53 <data android:mimeType="image/*" />
54 <data android:mimeType="video/*" />
Jackson Fan239bc522009-07-27 15:58:22 +080055 <data android:mimeType="audio/*" />
Lixin Yue6ef730f2009-12-17 16:31:22 +080056 <data android:mimeType="text/x-vcard" />
Tao Liejunfb8562d2009-11-18 11:02:59 -060057 <data android:mimeType="text/plain" />
58 <data android:mimeType="text/html" />
59 <data android:mimeType="application/zip" />
60 <data android:mimeType="application/vnd.ms-excel" />
61 <data android:mimeType="application/msword" />
62 <data android:mimeType="application/vnd.ms-powerpoint" />
63 <data android:mimeType="application/pdf" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070064 </intent-filter>
65 <intent-filter>
Tao Liejun1ac55072009-08-07 15:01:24 +080066 <action android:name="android.intent.action.SEND_MULTIPLE" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070067 <category android:name="android.intent.category.DEFAULT" />
68 <data android:mimeType="image/*" />
69 <data android:mimeType="video/*" />
70 <data android:mimeType="x-mixmedia/*" />
Lixin Yue6ef730f2009-12-17 16:31:22 +080071 <data android:mimeType="text/x-vcard" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070072 </intent-filter>
73 <intent-filter>
74 <action android:name="android.btopp.intent.action.OPEN" />
75 <category android:name="android.intent.category.DEFAULT" />
76 <data android:mimeType="vnd.android.cursor.item/vnd.android.btopp" />
77 </intent-filter>
78 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080079 <activity android:name=".opp.BluetoothOppBtEnableActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070080 android:process="@string/process"
Lixin Yuedc3bacd2009-09-21 20:36:16 +080081 android:excludeFromRecents="true"
Jaikumar Ganeshb27df662011-01-10 15:21:53 -080082 android:theme="@*android:style/Theme.Holo.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070083 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080084 <activity android:name=".opp.BluetoothOppBtErrorActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070085 android:process="@string/process"
Lixin Yuedc3bacd2009-09-21 20:36:16 +080086 android:excludeFromRecents="true"
Jaikumar Ganeshb27df662011-01-10 15:21:53 -080087 android:theme="@*android:style/Theme.Holo.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070088 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080089 <activity android:name=".opp.BluetoothOppBtEnablingActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070090 android:process="@string/process"
Lixin Yuedc3bacd2009-09-21 20:36:16 +080091 android:excludeFromRecents="true"
Jaikumar Ganeshb27df662011-01-10 15:21:53 -080092 android:theme="@*android:style/Theme.Holo.Dialog.Alert">
Lixin Yuedc3bacd2009-09-21 20:36:16 +080093 </activity>
Jaikumar Ganesh53647ab2009-09-11 16:20:52 -070094 <activity android:name=".opp.BluetoothOppIncomingFileConfirmActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070095 android:process="@string/process"
Jaikumar Ganesh53647ab2009-09-11 16:20:52 -070096 android:excludeFromRecents="true"
Jaikumar Ganeshb27df662011-01-10 15:21:53 -080097 android:theme="@*android:style/Theme.Holo.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070098 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080099 <activity android:name=".opp.BluetoothOppTransferActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -0700100 android:process="@string/process"
Lixin Yuedc3bacd2009-09-21 20:36:16 +0800101 android:excludeFromRecents="true"
Jaikumar Ganeshb27df662011-01-10 15:21:53 -0800102 android:theme="@*android:style/Theme.Holo.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -0700103 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -0700104 <activity android:name=".opp.BluetoothOppLiveFolder"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -0700105 android:process="@string/process"
Mike Cleronae70ee22009-09-29 13:03:26 -0700106 android:icon="@drawable/ic_launcher_folder_bluetooth"
Nick Pelly09e9cba2009-07-10 18:45:13 -0700107 android:label="@string/btopp_live_folder">
108 <intent-filter>
109 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
110 <category android:name="android.intent.category.DEFAULT" />
111 </intent-filter>
112 </activity>
Lixin Yue5cc61792010-02-26 17:35:23 +0800113 <activity android:name=".opp.BluetoothOppTransferHistory"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -0700114 android:process="@string/process"
Lixin Yue5cc61792010-02-26 17:35:23 +0800115 android:label=""
116 android:excludeFromRecents="true"
117 android:configChanges="orientation|keyboardHidden">
118 </activity>
Jackson Fan2c282d52009-07-19 12:25:14 +0800119 <activity android:name=".pbap.BluetoothPbapActivity"
Jaikumar Ganesh0bd5f7b2010-03-24 10:36:06 -0700120 android:process="@string/process"
Lixin Yuedc3bacd2009-09-21 20:36:16 +0800121 android:excludeFromRecents="true"
Jaikumar Ganeshb27df662011-01-10 15:21:53 -0800122 android:theme="@*android:style/Theme.Holo.Dialog.Alert">
Jackson Fan2c282d52009-07-19 12:25:14 +0800123 <intent-filter>
Lixin Yued8961622009-07-28 10:45:23 +0800124 <category android:name="android.intent.category.DEFAULT" />
Jackson Fan2c282d52009-07-19 12:25:14 +0800125 </intent-filter>
126 </activity>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -0800127 <service
128 android:process="@string/process"
129 android:name=".pbap.BluetoothPbapService" >
Jaikumar Ganeshb8c66032010-10-07 00:39:15 +0200130 <intent-filter>
131 <action android:name="android.bluetooth.IBluetoothPbap" />
132 </intent-filter>
Jackson Fan2c282d52009-07-19 12:25:14 +0800133 </service>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -0800134 <receiver
135 android:process="@string/process"
136 android:name=".pbap.BluetoothPbapReceiver">
Jackson Fan2c282d52009-07-19 12:25:14 +0800137 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -0700138 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED"/>
Jackson Fan2c282d52009-07-19 12:25:14 +0800139 </intent-filter>
140 </receiver>
Nick Pelly09e9cba2009-07-10 18:45:13 -0700141 </application>
142</manifest>