blob: 9323cfc18f1df1d4076650a0198bc5e2e994890b [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" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070019 <application android:icon="@drawable/stat_sys_data_bt"
20 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"
Nick Pelly09e9cba2009-07-10 18:45:13 -070023 android:authorities="com.android.bluetooth.opp"
24 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE" />
Tao Liejun6769b592009-07-14 15:55:04 -070025 <service android:name=".opp.BluetoothOppService"
Nick Pelly09e9cba2009-07-10 18:45:13 -070026 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE" />
Tao Liejun6769b592009-07-14 15:55:04 -070027 <receiver android:name=".opp.BluetoothOppReceiver">
Nick Pelly09e9cba2009-07-10 18:45:13 -070028 <intent-filter>
29 <action android:name="android.bluetooth.intent.action.BLUETOOTH_STATE_CHANGED" />
30 <action android:name="android.intent.action.BOOT_COMPLETED" />
31 </intent-filter>
32 </receiver>
Tao Liejun6769b592009-07-14 15:55:04 -070033 <activity android:name=".opp.BluetoothOppLauncherActivity"
Nick Pelly09e9cba2009-07-10 18:45:13 -070034 android:theme="@android:style/Theme.Dialog" android:label="@string/bt_share_picker_label">
35 <intent-filter>
36 <action android:name="android.intent.action.SEND" />
37 <category android:name="android.intent.category.DEFAULT" />
38 <data android:mimeType="image/*" />
39 <data android:mimeType="video/*" />
40 <data android:mimeType="text/x-vcard" />
41 </intent-filter>
42 <intent-filter>
43 <action android:name="android.intent.action.ACTION_SHARE_MULTIPLE" />
44 <category android:name="android.intent.category.DEFAULT" />
45 <data android:mimeType="image/*" />
46 <data android:mimeType="video/*" />
47 <data android:mimeType="x-mixmedia/*" />
48 </intent-filter>
49 <intent-filter>
50 <action android:name="android.btopp.intent.action.OPEN" />
51 <category android:name="android.intent.category.DEFAULT" />
52 <data android:mimeType="vnd.android.cursor.item/vnd.android.btopp" />
53 </intent-filter>
54 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070055 <activity android:name=".opp.BluetoothOppBtEnableActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070056 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070057 <activity android:name=".opp.BluetoothOppBtErrorActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070058 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070059 <activity android:name=".opp.BluetoothOppBtEnablingActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070060 android:theme="@android:style/Theme.Dialog"> </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070061 <activity android:name=".opp.BluetoothOppIncomingFileConfirmActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070062 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070063 <activity android:name=".opp.BluetoothOppTransferActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070064 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070065 <activity android:name=".opp.BluetoothDevicePickerActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070066 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070067 <activity android:name=".opp.BluetoothPinDialog" android:label="@string/bluetooth_pin_entry"
Nick Pelly09e9cba2009-07-10 18:45:13 -070068 android:theme="@*android:style/Theme.Dialog.Alert">
69 <intent-filter>
70 <action android:name="android.bluetooth.intent.action.PAIRING_REQUEST" />
71 <category android:name="android.intent.category.DEFAULT" />
72 </intent-filter>
73 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070074 <activity android:name=".opp.BluetoothOppLiveFolder"
Nick Pelly09e9cba2009-07-10 18:45:13 -070075 android:label="@string/btopp_live_folder">
76 <intent-filter>
77 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
78 <category android:name="android.intent.category.DEFAULT" />
79 </intent-filter>
80 </activity>
Jackson Fan2c282d52009-07-19 12:25:14 +080081 <activity android:name=".pbap.BluetoothPbapActivity"
82 android:label=" "
83 android:theme="@*android:style/Theme.Dialog.Alert">
84 <intent-filter>
85 <category android:name="android.intent.category.DEFAULT" />
86 </intent-filter>
87 </activity>
88 <service android:name=".pbap.BluetoothPbapService" >
89 <action android:name="android.bluetooth.IBluetoothPbap"/>
90 </service>
91 <receiver android:name=".pbap.BluetoothPbapReceiver">
92 <intent-filter>
93 <action android:name="android.bluetooth.intent.action.BLUETOOTH_STATE_CHANGED"/>
94 </intent-filter>
95 </receiver>
Nick Pelly09e9cba2009-07-10 18:45:13 -070096 </application>
97</manifest>