blob: de55b5f46bf976632b585316d5617dfdb9b14f18 [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"
Nick Pelly09e9cba2009-07-10 18:45:13 -070048 android:theme="@android:style/Theme.Dialog" android:label="@string/bt_share_picker_label">
49 <intent-filter>
50 <action android:name="android.intent.action.SEND" />
51 <category android:name="android.intent.category.DEFAULT" />
52 <data android:mimeType="image/*" />
53 <data android:mimeType="video/*" />
Tao Liejun888485a2009-08-31 10:48:23 +080054 <data android:mimeType="audio/*" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070055 </intent-filter>
56 <intent-filter>
Tao Liejun888485a2009-08-31 10:48:23 +080057 <action android:name="android.intent.action.SEND_MULTIPLE" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070058 <category android:name="android.intent.category.DEFAULT" />
59 <data android:mimeType="image/*" />
60 <data android:mimeType="video/*" />
61 <data android:mimeType="x-mixmedia/*" />
62 </intent-filter>
63 <intent-filter>
64 <action android:name="android.btopp.intent.action.OPEN" />
65 <category android:name="android.intent.category.DEFAULT" />
66 <data android:mimeType="vnd.android.cursor.item/vnd.android.btopp" />
67 </intent-filter>
68 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080069 <activity android:name=".opp.BluetoothOppBtEnableActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070070 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080071 <activity android:name=".opp.BluetoothOppBtErrorActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070072 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080073 <activity android:name=".opp.BluetoothOppBtEnablingActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070074 android:theme="@android:style/Theme.Dialog"> </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080075 <activity android:name=".opp.BluetoothOppIncomingFileConfirmActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070076 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080077 <activity android:name=".opp.BluetoothOppTransferActivity">
Nick Pelly09e9cba2009-07-10 18:45:13 -070078 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080079 <activity android:name=".opp.BluetoothOppLiveFolder"
Nick Pelly09e9cba2009-07-10 18:45:13 -070080 android:label="@string/btopp_live_folder">
81 <intent-filter>
82 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
83 <category android:name="android.intent.category.DEFAULT" />
84 </intent-filter>
85 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080086 <activity android:name=".pbap.BluetoothPbapActivity"
Jaikumar Ganesh0bd5f7b2010-03-24 10:36:06 -070087 android:process="@string/process"
Tao Liejun888485a2009-08-31 10:48:23 +080088 android:label=" "
89 android:theme="@*android:style/Theme.Dialog.Alert">
90 <intent-filter>
91 <category android:name="android.intent.category.DEFAULT" />
92 </intent-filter>
93 </activity>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080094 <service android:process="@string/process"
95 android:name=".pbap.BluetoothPbapService" >
Tao Liejun888485a2009-08-31 10:48:23 +080096 <action android:name="android.bluetooth.IBluetoothPbap"/>
97 </service>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080098 <receiver android:process="@string/process"
99 android:name=".pbap.BluetoothPbapReceiver">
Tao Liejun888485a2009-08-31 10:48:23 +0800100 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -0700101 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED"/>
Tao Liejun888485a2009-08-31 10:48:23 +0800102 </intent-filter>
103 </receiver>
Nick Pelly09e9cba2009-07-10 18:45:13 -0700104 </application>
105</manifest>