blob: 298e1f83a24ea939e259ac68d921baa040fdcdec [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"
Tao Liejun6769b592009-07-14 15:55:04 -07003 package="com.android.bluetooth" >
Jeff Hamilton5127e8e2010-02-11 16:25:47 -06004
5 <original-package android:name="com.android.bluetooth" />
6
Nick Pelly09e9cba2009-07-10 18:45:13 -07007 <!-- Allows access to the Bluetooth Share Manager -->
8 <permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE"
9 android:label="@string/permlab_bluetoothShareManager"
10 android:description="@string/permdesc_bluetoothShareManager"
11 android:protectionLevel="signature" />
12 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
13 <uses-permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE" />
14 <uses-permission android:name="android.permission.INTERNET" />
15 <uses-permission android:name="android.permission.BLUETOOTH" />
16 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
17 <uses-permission android:name="android.permission.WAKE_LOCK" />
18 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Jackson Fan2c282d52009-07-19 12:25:14 +080019 <uses-permission android:name="android.permission.READ_CONTACTS" />
20 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
21 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Jackson Fan239bc522009-07-27 15:58:22 +080022 <application android:icon="@drawable/bt_share"
Nick Pelly09e9cba2009-07-10 18:45:13 -070023 android:label="@string/app_name">
24 <uses-library android:name="javax.obex" />
Tao Liejun6769b592009-07-14 15:55:04 -070025 <provider android:name=".opp.BluetoothOppProvider"
Tao Liejun1ac55072009-08-07 15:01:24 +080026 android:authorities="com.android.bluetooth.opp">
27 <path-permission
28 android:path="/btopp"
29 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE" />
30 </provider>
Tao Liejun6769b592009-07-14 15:55:04 -070031 <service android:name=".opp.BluetoothOppService"
Nick Pelly09e9cba2009-07-10 18:45:13 -070032 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE" />
Tao Liejun6769b592009-07-14 15:55:04 -070033 <receiver android:name=".opp.BluetoothOppReceiver">
Nick Pelly09e9cba2009-07-10 18:45:13 -070034 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -070035 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070036 <action android:name="android.intent.action.BOOT_COMPLETED" />
37 </intent-filter>
38 </receiver>
Tao Liejun6769b592009-07-14 15:55:04 -070039 <activity android:name=".opp.BluetoothOppLauncherActivity"
Nick Pelly09e9cba2009-07-10 18:45:13 -070040 android:theme="@android:style/Theme.Dialog" android:label="@string/bt_share_picker_label">
41 <intent-filter>
42 <action android:name="android.intent.action.SEND" />
43 <category android:name="android.intent.category.DEFAULT" />
44 <data android:mimeType="image/*" />
45 <data android:mimeType="video/*" />
Jackson Fan239bc522009-07-27 15:58:22 +080046 <data android:mimeType="audio/*" />
Lixin Yue6ef730f2009-12-17 16:31:22 +080047 <data android:mimeType="text/x-vcard" />
Tao Liejunfb8562d2009-11-18 11:02:59 -060048 <data android:mimeType="text/plain" />
49 <data android:mimeType="text/html" />
50 <data android:mimeType="application/zip" />
51 <data android:mimeType="application/vnd.ms-excel" />
52 <data android:mimeType="application/msword" />
53 <data android:mimeType="application/vnd.ms-powerpoint" />
54 <data android:mimeType="application/pdf" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070055 </intent-filter>
56 <intent-filter>
Tao Liejun1ac55072009-08-07 15:01:24 +080057 <action android:name="android.intent.action.SEND_MULTIPLE" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070058 <category android:name="android.intent.category.DEFAULT" />
59 <data android:mimeType="image/*" />
60 <data android:mimeType="video/*" />
61 <data android:mimeType="x-mixmedia/*" />
Lixin Yue6ef730f2009-12-17 16:31:22 +080062 <data android:mimeType="text/x-vcard" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070063 </intent-filter>
64 <intent-filter>
65 <action android:name="android.btopp.intent.action.OPEN" />
66 <category android:name="android.intent.category.DEFAULT" />
67 <data android:mimeType="vnd.android.cursor.item/vnd.android.btopp" />
68 </intent-filter>
69 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080070 <activity android:name=".opp.BluetoothOppBtEnableActivity"
71 android:excludeFromRecents="true"
72 android:theme="@*android:style/Theme.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070073 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080074 <activity android:name=".opp.BluetoothOppBtErrorActivity"
75 android:excludeFromRecents="true"
76 android:theme="@*android:style/Theme.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070077 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080078 <activity android:name=".opp.BluetoothOppBtEnablingActivity"
79 android:excludeFromRecents="true"
80 android:theme="@*android:style/Theme.Dialog.Alert">
81 </activity>
Jaikumar Ganesh53647ab2009-09-11 16:20:52 -070082 <activity android:name=".opp.BluetoothOppIncomingFileConfirmActivity"
83 android:excludeFromRecents="true"
84 android:theme="@*android:style/Theme.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070085 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080086 <activity android:name=".opp.BluetoothOppTransferActivity"
87 android:excludeFromRecents="true"
88 android:theme="@*android:style/Theme.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070089 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070090 <activity android:name=".opp.BluetoothOppLiveFolder"
Mike Cleronae70ee22009-09-29 13:03:26 -070091 android:icon="@drawable/ic_launcher_folder_bluetooth"
Nick Pelly09e9cba2009-07-10 18:45:13 -070092 android:label="@string/btopp_live_folder">
93 <intent-filter>
94 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
95 <category android:name="android.intent.category.DEFAULT" />
96 </intent-filter>
97 </activity>
Jackson Fan2c282d52009-07-19 12:25:14 +080098 <activity android:name=".pbap.BluetoothPbapActivity"
Lixin Yuedc3bacd2009-09-21 20:36:16 +080099 android:excludeFromRecents="true"
Jackson Fan2c282d52009-07-19 12:25:14 +0800100 android:theme="@*android:style/Theme.Dialog.Alert">
101 <intent-filter>
Lixin Yued8961622009-07-28 10:45:23 +0800102 <category android:name="android.intent.category.DEFAULT" />
Jackson Fan2c282d52009-07-19 12:25:14 +0800103 </intent-filter>
104 </activity>
105 <service android:name=".pbap.BluetoothPbapService" >
Jackson Fan2c282d52009-07-19 12:25:14 +0800106 </service>
107 <receiver android:name=".pbap.BluetoothPbapReceiver">
108 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -0700109 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED"/>
Jackson Fan2c282d52009-07-19 12:25:14 +0800110 </intent-filter>
111 </receiver>
Nick Pelly09e9cba2009-07-10 18:45:13 -0700112 </application>
113</manifest>