blob: c78e9714cfed07d9acaed5dcb3ba7b8cac7f9e56 [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"
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -08003 package="com.android.bluetooth"
4 android:sharedUserId="@string/sharedUserId">
Jeff Hamilton5127e8e2010-02-11 16:25:47 -06005
6 <original-package android:name="com.android.bluetooth" />
7
Nick Pelly09e9cba2009-07-10 18:45:13 -07008 <!-- Allows access to the Bluetooth Share Manager -->
9 <permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE"
10 android:label="@string/permlab_bluetoothShareManager"
11 android:description="@string/permdesc_bluetoothShareManager"
12 android:protectionLevel="signature" />
13 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
14 <uses-permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE" />
15 <uses-permission android:name="android.permission.INTERNET" />
16 <uses-permission android:name="android.permission.BLUETOOTH" />
17 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
18 <uses-permission android:name="android.permission.WAKE_LOCK" />
19 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Jackson Fan2c282d52009-07-19 12:25:14 +080020 <uses-permission android:name="android.permission.READ_CONTACTS" />
21 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
22 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080023 <application
24 android:icon="@drawable/bt_share"
Nick Pelly09e9cba2009-07-10 18:45:13 -070025 android:label="@string/app_name">
26 <uses-library android:name="javax.obex" />
Tao Liejun6769b592009-07-14 15:55:04 -070027 <provider android:name=".opp.BluetoothOppProvider"
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080028 android:authorities="com.android.bluetooth.opp"
29 android:process="@string/process">
Tao Liejun1ac55072009-08-07 15:01:24 +080030 <path-permission
31 android:path="/btopp"
32 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE" />
33 </provider>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080034 <service
35 android:process="@string/process"
36 android:name=".opp.BluetoothOppService"
Nick Pelly09e9cba2009-07-10 18:45:13 -070037 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE" />
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080038 <receiver
39 android:process="@string/process"
40 android:name=".opp.BluetoothOppReceiver">
Nick Pelly09e9cba2009-07-10 18:45:13 -070041 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -070042 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070043 <action android:name="android.intent.action.BOOT_COMPLETED" />
44 </intent-filter>
45 </receiver>
Tao Liejun6769b592009-07-14 15:55:04 -070046 <activity android:name=".opp.BluetoothOppLauncherActivity"
Nick Pelly09e9cba2009-07-10 18:45:13 -070047 android:theme="@android:style/Theme.Dialog" android:label="@string/bt_share_picker_label">
48 <intent-filter>
49 <action android:name="android.intent.action.SEND" />
50 <category android:name="android.intent.category.DEFAULT" />
51 <data android:mimeType="image/*" />
52 <data android:mimeType="video/*" />
Jackson Fan239bc522009-07-27 15:58:22 +080053 <data android:mimeType="audio/*" />
Lixin Yue6ef730f2009-12-17 16:31:22 +080054 <data android:mimeType="text/x-vcard" />
Tao Liejunfb8562d2009-11-18 11:02:59 -060055 <data android:mimeType="text/plain" />
56 <data android:mimeType="text/html" />
57 <data android:mimeType="application/zip" />
58 <data android:mimeType="application/vnd.ms-excel" />
59 <data android:mimeType="application/msword" />
60 <data android:mimeType="application/vnd.ms-powerpoint" />
61 <data android:mimeType="application/pdf" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070062 </intent-filter>
63 <intent-filter>
Tao Liejun1ac55072009-08-07 15:01:24 +080064 <action android:name="android.intent.action.SEND_MULTIPLE" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070065 <category android:name="android.intent.category.DEFAULT" />
66 <data android:mimeType="image/*" />
67 <data android:mimeType="video/*" />
68 <data android:mimeType="x-mixmedia/*" />
Lixin Yue6ef730f2009-12-17 16:31:22 +080069 <data android:mimeType="text/x-vcard" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070070 </intent-filter>
71 <intent-filter>
72 <action android:name="android.btopp.intent.action.OPEN" />
73 <category android:name="android.intent.category.DEFAULT" />
74 <data android:mimeType="vnd.android.cursor.item/vnd.android.btopp" />
75 </intent-filter>
76 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080077 <activity android:name=".opp.BluetoothOppBtEnableActivity"
78 android:excludeFromRecents="true"
79 android:theme="@*android:style/Theme.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070080 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080081 <activity android:name=".opp.BluetoothOppBtErrorActivity"
82 android:excludeFromRecents="true"
83 android:theme="@*android:style/Theme.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070084 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080085 <activity android:name=".opp.BluetoothOppBtEnablingActivity"
86 android:excludeFromRecents="true"
87 android:theme="@*android:style/Theme.Dialog.Alert">
88 </activity>
Jaikumar Ganesh53647ab2009-09-11 16:20:52 -070089 <activity android:name=".opp.BluetoothOppIncomingFileConfirmActivity"
90 android:excludeFromRecents="true"
91 android:theme="@*android:style/Theme.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070092 </activity>
Lixin Yuedc3bacd2009-09-21 20:36:16 +080093 <activity android:name=".opp.BluetoothOppTransferActivity"
94 android:excludeFromRecents="true"
95 android:theme="@*android:style/Theme.Dialog.Alert">
Nick Pelly09e9cba2009-07-10 18:45:13 -070096 </activity>
Tao Liejun6769b592009-07-14 15:55:04 -070097 <activity android:name=".opp.BluetoothOppLiveFolder"
Mike Cleronae70ee22009-09-29 13:03:26 -070098 android:icon="@drawable/ic_launcher_folder_bluetooth"
Nick Pelly09e9cba2009-07-10 18:45:13 -070099 android:label="@string/btopp_live_folder">
100 <intent-filter>
101 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
102 <category android:name="android.intent.category.DEFAULT" />
103 </intent-filter>
104 </activity>
Lixin Yue5cc61792010-02-26 17:35:23 +0800105 <activity android:name=".opp.BluetoothOppTransferHistory"
106 android:label=""
107 android:excludeFromRecents="true"
108 android:configChanges="orientation|keyboardHidden">
109 </activity>
Jackson Fan2c282d52009-07-19 12:25:14 +0800110 <activity android:name=".pbap.BluetoothPbapActivity"
Lixin Yuedc3bacd2009-09-21 20:36:16 +0800111 android:excludeFromRecents="true"
Jackson Fan2c282d52009-07-19 12:25:14 +0800112 android:theme="@*android:style/Theme.Dialog.Alert">
113 <intent-filter>
Lixin Yued8961622009-07-28 10:45:23 +0800114 <category android:name="android.intent.category.DEFAULT" />
Jackson Fan2c282d52009-07-19 12:25:14 +0800115 </intent-filter>
116 </activity>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -0800117 <service
118 android:process="@string/process"
119 android:name=".pbap.BluetoothPbapService" >
Jackson Fan2c282d52009-07-19 12:25:14 +0800120 </service>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -0800121 <receiver
122 android:process="@string/process"
123 android:name=".pbap.BluetoothPbapReceiver">
Jackson Fan2c282d52009-07-19 12:25:14 +0800124 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -0700125 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED"/>
Jackson Fan2c282d52009-07-19 12:25:14 +0800126 </intent-filter>
127 </receiver>
Nick Pelly09e9cba2009-07-10 18:45:13 -0700128 </application>
129</manifest>