blob: cb9d29a8d98f4a9d877440bbcf412ace4e1016fd [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" >
Nick Pelly09e9cba2009-07-10 18:45:13 -07004 <!-- Allows access to the Bluetooth Share Manager -->
5 <permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE"
6 android:label="@string/permlab_bluetoothShareManager"
7 android:description="@string/permdesc_bluetoothShareManager"
8 android:protectionLevel="signature" />
9 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
10 <uses-permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE" />
11 <uses-permission android:name="android.permission.INTERNET" />
12 <uses-permission android:name="android.permission.BLUETOOTH" />
13 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
14 <uses-permission android:name="android.permission.WAKE_LOCK" />
15 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Jackson Fan2c282d52009-07-19 12:25:14 +080016 <uses-permission android:name="android.permission.READ_CONTACTS" />
17 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
18 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Jackson Fan239bc522009-07-27 15:58:22 +080019 <application android:icon="@drawable/bt_share"
Nick Pelly09e9cba2009-07-10 18:45:13 -070020 android:label="@string/app_name">
21 <uses-library android:name="javax.obex" />
Tao Liejun6769b592009-07-14 15:55:04 -070022 <provider android:name=".opp.BluetoothOppProvider"
Tao Liejun1ac55072009-08-07 15:01:24 +080023 android:authorities="com.android.bluetooth.opp">
24 <path-permission
25 android:path="/btopp"
26 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE" />
27 </provider>
Tao Liejun6769b592009-07-14 15:55:04 -070028 <service android:name=".opp.BluetoothOppService"
Nick Pelly09e9cba2009-07-10 18:45:13 -070029 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE" />
Tao Liejun6769b592009-07-14 15:55:04 -070030 <receiver android:name=".opp.BluetoothOppReceiver">
Nick Pelly09e9cba2009-07-10 18:45:13 -070031 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -070032 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070033 <action android:name="android.intent.action.BOOT_COMPLETED" />
34 </intent-filter>
35 </receiver>
Tao Liejun6769b592009-07-14 15:55:04 -070036 <activity android:name=".opp.BluetoothOppLauncherActivity"
Nick Pelly09e9cba2009-07-10 18:45:13 -070037 android:theme="@android:style/Theme.Dialog" android:label="@string/bt_share_picker_label">
38 <intent-filter>
39 <action android:name="android.intent.action.SEND" />
40 <category android:name="android.intent.category.DEFAULT" />
41 <data android:mimeType="image/*" />
42 <data android:mimeType="video/*" />
Jackson Fan239bc522009-07-27 15:58:22 +080043 <data android:mimeType="audio/*" />
Lixin Yue6ef730f2009-12-17 16:31:22 +080044 <data android:mimeType="text/x-vcard" />
Tao Liejunfb8562d2009-11-18 11:02:59 -060045 <data android:mimeType="text/plain" />
46 <data android:mimeType="text/html" />
47 <data android:mimeType="application/zip" />
48 <data android:mimeType="application/vnd.ms-excel" />
49 <data android:mimeType="application/msword" />
50 <data android:mimeType="application/vnd.ms-powerpoint" />
51 <data android:mimeType="application/pdf" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070052 </intent-filter>
53 <intent-filter>
Tao Liejun1ac55072009-08-07 15:01:24 +080054 <action android:name="android.intent.action.SEND_MULTIPLE" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070055 <category android:name="android.intent.category.DEFAULT" />
56 <data android:mimeType="image/*" />
57 <data android:mimeType="video/*" />
58 <data android:mimeType="x-mixmedia/*" />
Lixin Yue6ef730f2009-12-17 16:31:22 +080059 <data android:mimeType="text/x-vcard" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070060 </intent-filter>
61 <intent-filter>
62 <action android:name="android.btopp.intent.action.OPEN" />
63 <category android:name="android.intent.category.DEFAULT" />
64 <data android:mimeType="vnd.android.cursor.item/vnd.android.btopp" />
65 </intent-filter>
66 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080067 <activity android:name=".opp.BluetoothOppBtEnableActivity"
68 android:excludeFromRecents="true"
69 android:theme="@*android:style/Theme.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070070 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080071 <activity android:name=".opp.BluetoothOppBtErrorActivity"
72 android:excludeFromRecents="true"
73 android:theme="@*android:style/Theme.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070074 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080075 <activity android:name=".opp.BluetoothOppBtEnablingActivity"
76 android:excludeFromRecents="true"
77 android:theme="@*android:style/Theme.Dialog.Alert">
78 </activity>
Jaikumar Ganesh53647ab2009-09-11 16:20:52 -070079 <activity android:name=".opp.BluetoothOppIncomingFileConfirmActivity"
80 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.BluetoothOppTransferActivity"
84 android:excludeFromRecents="true"
85 android:theme="@*android:style/Theme.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070086 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070087 <activity android:name=".opp.BluetoothOppLiveFolder"
Mike Cleronae70ee22009-09-29 13:03:26 -070088 android:icon="@drawable/ic_launcher_folder_bluetooth"
Nick Pelly09e9cba2009-07-10 18:45:13 -070089 android:label="@string/btopp_live_folder">
90 <intent-filter>
91 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
92 <category android:name="android.intent.category.DEFAULT" />
93 </intent-filter>
94 </activity>
Jackson Fan2c282d52009-07-19 12:25:14 +080095 <activity android:name=".pbap.BluetoothPbapActivity"
Lixin Yuedc3bacd2009-09-21 20:36:16 +080096 android:excludeFromRecents="true"
Jackson Fan2c282d52009-07-19 12:25:14 +080097 android:theme="@*android:style/Theme.Dialog.Alert">
98 <intent-filter>
Lixin Yued8961622009-07-28 10:45:23 +080099 <category android:name="android.intent.category.DEFAULT" />
Jackson Fan2c282d52009-07-19 12:25:14 +0800100 </intent-filter>
101 </activity>
102 <service android:name=".pbap.BluetoothPbapService" >
Jackson Fan2c282d52009-07-19 12:25:14 +0800103 </service>
104 <receiver android:name=".pbap.BluetoothPbapReceiver">
105 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -0700106 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED"/>
Jackson Fan2c282d52009-07-19 12:25:14 +0800107 </intent-filter>
108 </receiver>
Nick Pelly09e9cba2009-07-10 18:45:13 -0700109 </application>
110</manifest>