blob: 8511daef5749fa9b4183c7fc1c8d4baf8570de95 [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">
Nick Pelly09e9cba2009-07-10 18:45:13 -07005 <!-- Allows access to the Bluetooth Share Manager -->
6 <permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE"
7 android:label="@string/permlab_bluetoothShareManager"
8 android:description="@string/permdesc_bluetoothShareManager"
Tao Liejun888485a2009-08-31 10:48:23 +08009 android:protectionLevel="signature" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070010 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
11 <uses-permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE" />
12 <uses-permission android:name="android.permission.INTERNET" />
13 <uses-permission android:name="android.permission.BLUETOOTH" />
14 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
15 <uses-permission android:name="android.permission.WAKE_LOCK" />
16 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Tao Liejun888485a2009-08-31 10:48:23 +080017 <uses-permission android:name="android.permission.READ_CONTACTS" />
18 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
19 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080020 <application
21 android:icon="@drawable/bt_share"
Nick Pelly09e9cba2009-07-10 18:45:13 -070022 android:label="@string/app_name">
23 <uses-library android:name="javax.obex" />
Tao Liejun888485a2009-08-31 10:48:23 +080024 <activity android:name=".opp.TestActivity" android:label="@string/app_name">
Nick Pelly09e9cba2009-07-10 18:45:13 -070025 <intent-filter>
26 <action android:name="android.intent.action.MAIN" />
27 <category android:name="android.intent.category.LAUNCHER" />
28 </intent-filter>
29 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080030 <provider android:name=".opp.BluetoothOppProvider"
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080031 android:authorities="com.android.bluetooth.opp"
32 android:process="@string/process">
Tao Liejun888485a2009-08-31 10:48:23 +080033 <path-permission
34 android:path="/btopp"
35 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE" />
36 </provider>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080037 <service android:process="@string/process"
38 android:name=".opp.BluetoothOppService"
Nick Pelly09e9cba2009-07-10 18:45:13 -070039 android:permission="android.permission.ACCESS_BLUETOOTH_SHARE" />
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080040 <receiver android:process="@string/process"
41 android:name=".opp.BluetoothOppReceiver">
Nick Pelly09e9cba2009-07-10 18:45:13 -070042 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -070043 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070044 <action android:name="android.intent.action.BOOT_COMPLETED" />
45 </intent-filter>
46 </receiver>
Tao Liejun888485a2009-08-31 10:48:23 +080047 <activity android:name=".opp.BluetoothOppLauncherActivity"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070048 android:process="@string/process"
Jaikumar Ganeshb27df662011-01-10 15:21:53 -080049 android:theme="@android:style/Theme.Holo.Dialog" android:label="@string/bt_share_picker_label">
Nick Pelly09e9cba2009-07-10 18:45:13 -070050 <intent-filter>
51 <action android:name="android.intent.action.SEND" />
52 <category android:name="android.intent.category.DEFAULT" />
53 <data android:mimeType="image/*" />
54 <data android:mimeType="video/*" />
Tao Liejun888485a2009-08-31 10:48:23 +080055 <data android:mimeType="audio/*" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070056 </intent-filter>
57 <intent-filter>
Tao Liejun888485a2009-08-31 10:48:23 +080058 <action android:name="android.intent.action.SEND_MULTIPLE" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070059 <category android:name="android.intent.category.DEFAULT" />
60 <data android:mimeType="image/*" />
61 <data android:mimeType="video/*" />
62 <data android:mimeType="x-mixmedia/*" />
63 </intent-filter>
64 <intent-filter>
65 <action android:name="android.btopp.intent.action.OPEN" />
66 <category android:name="android.intent.category.DEFAULT" />
67 <data android:mimeType="vnd.android.cursor.item/vnd.android.btopp" />
68 </intent-filter>
69 </activity>
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070070 <activity android:name=".opp.BluetoothOppBtEnableActivity"
71 android:process="@string/process">
Nick Pelly09e9cba2009-07-10 18:45:13 -070072 </activity>
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070073 <activity android:name=".opp.BluetoothOppBtErrorActivity"
74 android:process="@string/process">
Nick Pelly09e9cba2009-07-10 18:45:13 -070075 </activity>
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070076 <activity android:name=".opp.BluetoothOppBtEnablingActivity"
77 android:process="@string/process">
Jaikumar Ganeshb27df662011-01-10 15:21:53 -080078 android:theme="@android:style/Theme.Holo.Dialog"> </activity>
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070079 <activity android:name=".opp.BluetoothOppIncomingFileConfirmActivity"
80 android:process="@string/process">
Nick Pelly09e9cba2009-07-10 18:45:13 -070081 </activity>
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070082 <activity android:name=".opp.BluetoothOppTransferActivity"
83 android:process="@string/process">
Nick Pelly09e9cba2009-07-10 18:45:13 -070084 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080085 <activity android:name=".opp.BluetoothOppLiveFolder"
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070086 android:process="@string/process"
Nick Pelly09e9cba2009-07-10 18:45:13 -070087 android:label="@string/btopp_live_folder">
88 <intent-filter>
89 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
90 <category android:name="android.intent.category.DEFAULT" />
91 </intent-filter>
92 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080093 <activity android:name=".pbap.BluetoothPbapActivity"
Jaikumar Ganesh0bd5f7b2010-03-24 10:36:06 -070094 android:process="@string/process"
Tao Liejun888485a2009-08-31 10:48:23 +080095 android:label=" "
Jaikumar Ganeshb27df662011-01-10 15:21:53 -080096 android:theme="@*android:style/Theme.Holo.Dialog.Alert">
Tao Liejun888485a2009-08-31 10:48:23 +080097 <intent-filter>
98 <category android:name="android.intent.category.DEFAULT" />
99 </intent-filter>
100 </activity>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -0800101 <service android:process="@string/process"
102 android:name=".pbap.BluetoothPbapService" >
Tao Liejun888485a2009-08-31 10:48:23 +0800103 <action android:name="android.bluetooth.IBluetoothPbap"/>
104 </service>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -0800105 <receiver android:process="@string/process"
106 android:name=".pbap.BluetoothPbapReceiver">
Tao Liejun888485a2009-08-31 10:48:23 +0800107 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -0700108 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED"/>
Tao Liejun888485a2009-08-31 10:48:23 +0800109 </intent-filter>
110 </receiver>
Nick Pelly09e9cba2009-07-10 18:45:13 -0700111 </application>
112</manifest>