blob: 58e0ebc160531be353bf0135f2a4bfa88c7e7ef9 [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" />
44 </intent-filter>
45 </receiver>
Tao Liejun6769b592009-07-14 15:55:04 -070046 <activity android:name=".opp.BluetoothOppLauncherActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070047 android:process="@string/process"
Nick Pelly09e9cba2009-07-10 18:45:13 -070048 android:theme="@android:style/Theme.Dialog" android:label="@string/bt_share_picker_label">
49 <intent-filter>
50 <action android:name="android.intent.action.SEND" />
51 <category android:name="android.intent.category.DEFAULT" />
52 <data android:mimeType="image/*" />
53 <data android:mimeType="video/*" />
Jackson Fan239bc522009-07-27 15:58:22 +080054 <data android:mimeType="audio/*" />
Lixin Yue6ef730f2009-12-17 16:31:22 +080055 <data android:mimeType="text/x-vcard" />
Tao Liejunfb8562d2009-11-18 11:02:59 -060056 <data android:mimeType="text/plain" />
57 <data android:mimeType="text/html" />
58 <data android:mimeType="application/zip" />
59 <data android:mimeType="application/vnd.ms-excel" />
60 <data android:mimeType="application/msword" />
61 <data android:mimeType="application/vnd.ms-powerpoint" />
62 <data android:mimeType="application/pdf" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070063 </intent-filter>
64 <intent-filter>
Tao Liejun1ac55072009-08-07 15:01:24 +080065 <action android:name="android.intent.action.SEND_MULTIPLE" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070066 <category android:name="android.intent.category.DEFAULT" />
67 <data android:mimeType="image/*" />
68 <data android:mimeType="video/*" />
69 <data android:mimeType="x-mixmedia/*" />
Lixin Yue6ef730f2009-12-17 16:31:22 +080070 <data android:mimeType="text/x-vcard" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070071 </intent-filter>
72 <intent-filter>
73 <action android:name="android.btopp.intent.action.OPEN" />
74 <category android:name="android.intent.category.DEFAULT" />
75 <data android:mimeType="vnd.android.cursor.item/vnd.android.btopp" />
76 </intent-filter>
77 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080078 <activity android:name=".opp.BluetoothOppBtEnableActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070079 android:process="@string/process"
Lixin Yuedc3bacd2009-09-21 20:36:16 +080080 android:excludeFromRecents="true"
81 android:theme="@*android:style/Theme.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070082 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080083 <activity android:name=".opp.BluetoothOppBtErrorActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070084 android:process="@string/process"
Lixin Yuedc3bacd2009-09-21 20:36:16 +080085 android:excludeFromRecents="true"
86 android:theme="@*android:style/Theme.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070087 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080088 <activity android:name=".opp.BluetoothOppBtEnablingActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070089 android:process="@string/process"
Lixin Yuedc3bacd2009-09-21 20:36:16 +080090 android:excludeFromRecents="true"
91 android:theme="@*android:style/Theme.Dialog.Alert">
92 </activity>
Jaikumar Ganesh53647ab2009-09-11 16:20:52 -070093 <activity android:name=".opp.BluetoothOppIncomingFileConfirmActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070094 android:process="@string/process"
Jaikumar Ganesh53647ab2009-09-11 16:20:52 -070095 android:excludeFromRecents="true"
96 android:theme="@*android:style/Theme.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070097 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080098 <activity android:name=".opp.BluetoothOppTransferActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070099 android:process="@string/process"
Lixin Yuedc3bacd2009-09-21 20:36:16 +0800100 android:excludeFromRecents="true"
101 android:theme="@*android:style/Theme.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -0700102 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -0700103 <activity android:name=".opp.BluetoothOppLiveFolder"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -0700104 android:process="@string/process"
Mike Cleronae70ee22009-09-29 13:03:26 -0700105 android:icon="@drawable/ic_launcher_folder_bluetooth"
Nick Pelly09e9cba2009-07-10 18:45:13 -0700106 android:label="@string/btopp_live_folder">
107 <intent-filter>
108 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
109 <category android:name="android.intent.category.DEFAULT" />
110 </intent-filter>
111 </activity>
Lixin Yue5cc61792010-02-26 17:35:23 +0800112 <activity android:name=".opp.BluetoothOppTransferHistory"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -0700113 android:process="@string/process"
Lixin Yue5cc61792010-02-26 17:35:23 +0800114 android:label=""
115 android:excludeFromRecents="true"
116 android:configChanges="orientation|keyboardHidden">
117 </activity>
Jackson Fan2c282d52009-07-19 12:25:14 +0800118 <activity android:name=".pbap.BluetoothPbapActivity"
Jaikumar Ganesh0bd5f7b2010-03-24 10:36:06 -0700119 android:process="@string/process"
Lixin Yuedc3bacd2009-09-21 20:36:16 +0800120 android:excludeFromRecents="true"
Jackson Fan2c282d52009-07-19 12:25:14 +0800121 android:theme="@*android:style/Theme.Dialog.Alert">
122 <intent-filter>
Lixin Yued8961622009-07-28 10:45:23 +0800123 <category android:name="android.intent.category.DEFAULT" />
Jackson Fan2c282d52009-07-19 12:25:14 +0800124 </intent-filter>
125 </activity>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -0800126 <service
127 android:process="@string/process"
128 android:name=".pbap.BluetoothPbapService" >
Jackson Fan2c282d52009-07-19 12:25:14 +0800129 </service>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -0800130 <receiver
131 android:process="@string/process"
132 android:name=".pbap.BluetoothPbapReceiver">
Jackson Fan2c282d52009-07-19 12:25:14 +0800133 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -0700134 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED"/>
Jackson Fan2c282d52009-07-19 12:25:14 +0800135 </intent-filter>
136 </receiver>
Nick Pelly09e9cba2009-07-10 18:45:13 -0700137 </application>
138</manifest>