blob: 41a81058a02be50390de3404598abbbc9812294a [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/*" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070044 </intent-filter>
45 <intent-filter>
Tao Liejun1ac55072009-08-07 15:01:24 +080046 <action android:name="android.intent.action.SEND_MULTIPLE" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070047 <category android:name="android.intent.category.DEFAULT" />
48 <data android:mimeType="image/*" />
49 <data android:mimeType="video/*" />
50 <data android:mimeType="x-mixmedia/*" />
51 </intent-filter>
52 <intent-filter>
53 <action android:name="android.btopp.intent.action.OPEN" />
54 <category android:name="android.intent.category.DEFAULT" />
55 <data android:mimeType="vnd.android.cursor.item/vnd.android.btopp" />
56 </intent-filter>
57 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070058 <activity android:name=".opp.BluetoothOppBtEnableActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070059 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070060 <activity android:name=".opp.BluetoothOppBtErrorActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070061 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070062 <activity android:name=".opp.BluetoothOppBtEnablingActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070063 android:theme="@android:style/Theme.Dialog"> </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070064 <activity android:name=".opp.BluetoothOppIncomingFileConfirmActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070065 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070066 <activity android:name=".opp.BluetoothOppTransferActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070067 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070068 <activity android:name=".opp.BluetoothOppLiveFolder"
Nick Pelly09e9cba2009-07-10 18:45:13 -070069 android:label="@string/btopp_live_folder">
70 <intent-filter>
71 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
72 <category android:name="android.intent.category.DEFAULT" />
73 </intent-filter>
74 </activity>
Jackson Fan2c282d52009-07-19 12:25:14 +080075 <activity android:name=".pbap.BluetoothPbapActivity"
76 android:label=" "
77 android:theme="@*android:style/Theme.Dialog.Alert">
78 <intent-filter>
Lixin Yued8961622009-07-28 10:45:23 +080079 <category android:name="android.intent.category.DEFAULT" />
Jackson Fan2c282d52009-07-19 12:25:14 +080080 </intent-filter>
81 </activity>
82 <service android:name=".pbap.BluetoothPbapService" >
83 <action android:name="android.bluetooth.IBluetoothPbap"/>
84 </service>
85 <receiver android:name=".pbap.BluetoothPbapReceiver">
86 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -070087 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED"/>
Jackson Fan2c282d52009-07-19 12:25:14 +080088 </intent-filter>
89 </receiver>
Nick Pelly09e9cba2009-07-10 18:45:13 -070090 </application>
91</manifest>