blob: b6d65680793cef79845b5500106c0653f10b9e08 [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 Liejun888485a2009-08-31 10:48:23 +08003 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"
Tao Liejun888485a2009-08-31 10:48:23 +08008 android:protectionLevel="signature" />
Nick Pelly09e9cba2009-07-10 18:45:13 -07009 <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" />
Tao Liejun888485a2009-08-31 10:48:23 +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 Liejun888485a2009-08-31 10:48:23 +080022 <activity android:name=".opp.TestActivity" android:label="@string/app_name">
Nick Pelly09e9cba2009-07-10 18:45:13 -070023 <intent-filter>
24 <action android:name="android.intent.action.MAIN" />
25 <category android:name="android.intent.category.LAUNCHER" />
26 </intent-filter>
27 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080028 <provider android:name=".opp.BluetoothOppProvider"
29 android:authorities="com.android.bluetooth.opp">
30 <path-permission
31 android:path="/btopp"
32 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE" />
33 </provider>
34 <service android:name=".opp.BluetoothOppService"
Nick Pelly09e9cba2009-07-10 18:45:13 -070035 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE" />
Tao Liejun888485a2009-08-31 10:48:23 +080036 <receiver android:name=".opp.BluetoothOppReceiver">
Nick Pelly09e9cba2009-07-10 18:45:13 -070037 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -070038 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070039 <action android:name="android.intent.action.BOOT_COMPLETED" />
40 </intent-filter>
41 </receiver>
Tao Liejun888485a2009-08-31 10:48:23 +080042 <activity android:name=".opp.BluetoothOppLauncherActivity"
Nick Pelly09e9cba2009-07-10 18:45:13 -070043 android:theme="@android:style/Theme.Dialog" android:label="@string/bt_share_picker_label">
44 <intent-filter>
45 <action android:name="android.intent.action.SEND" />
46 <category android:name="android.intent.category.DEFAULT" />
47 <data android:mimeType="image/*" />
48 <data android:mimeType="video/*" />
Tao Liejun888485a2009-08-31 10:48:23 +080049 <data android:mimeType="audio/*" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070050 </intent-filter>
51 <intent-filter>
Tao Liejun888485a2009-08-31 10:48:23 +080052 <action android:name="android.intent.action.SEND_MULTIPLE" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070053 <category android:name="android.intent.category.DEFAULT" />
54 <data android:mimeType="image/*" />
55 <data android:mimeType="video/*" />
56 <data android:mimeType="x-mixmedia/*" />
57 </intent-filter>
58 <intent-filter>
59 <action android:name="android.btopp.intent.action.OPEN" />
60 <category android:name="android.intent.category.DEFAULT" />
61 <data android:mimeType="vnd.android.cursor.item/vnd.android.btopp" />
62 </intent-filter>
63 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080064 <activity android:name=".opp.BluetoothOppBtEnableActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070065 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080066 <activity android:name=".opp.BluetoothOppBtErrorActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070067 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080068 <activity android:name=".opp.BluetoothOppBtEnablingActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070069 android:theme="@android:style/Theme.Dialog"> </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080070 <activity android:name=".opp.BluetoothOppIncomingFileConfirmActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070071 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080072 <activity android:name=".opp.BluetoothOppTransferActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070073 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080074 <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>
Tao Liejun888485a2009-08-31 10:48:23 +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>
Nick Pellybd540682009-09-11 11:46:59 -070093 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED"/>
Tao Liejun888485a2009-08-31 10:48:23 +080094 </intent-filter>
95 </receiver>
Nick Pelly09e9cba2009-07-10 18:45:13 -070096 </application>
97</manifest>