blob: ae21b8873ae852943c142fa151e59e94c74779bf [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
Sunny Goyal0fcf6202015-03-16 11:07:53 -070021 android:icon="@mipmap/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"
Alan Viverette046b65c2015-06-18 14:55:33 -070049 android:theme="@android:style/Theme.Material.Light.Dialog"
Alan Viverette8c2499c2015-05-29 10:35:17 -070050 android:label="@string/bt_share_picker_label">
Nick Pelly09e9cba2009-07-10 18:45:13 -070051 <intent-filter>
52 <action android:name="android.intent.action.SEND" />
53 <category android:name="android.intent.category.DEFAULT" />
54 <data android:mimeType="image/*" />
55 <data android:mimeType="video/*" />
Tao Liejun888485a2009-08-31 10:48:23 +080056 <data android:mimeType="audio/*" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070057 </intent-filter>
58 <intent-filter>
Tao Liejun888485a2009-08-31 10:48:23 +080059 <action android:name="android.intent.action.SEND_MULTIPLE" />
Nick Pelly09e9cba2009-07-10 18:45:13 -070060 <category android:name="android.intent.category.DEFAULT" />
61 <data android:mimeType="image/*" />
62 <data android:mimeType="video/*" />
63 <data android:mimeType="x-mixmedia/*" />
64 </intent-filter>
65 <intent-filter>
66 <action android:name="android.btopp.intent.action.OPEN" />
67 <category android:name="android.intent.category.DEFAULT" />
68 <data android:mimeType="vnd.android.cursor.item/vnd.android.btopp" />
69 </intent-filter>
70 </activity>
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070071 <activity android:name=".opp.BluetoothOppBtEnableActivity"
72 android:process="@string/process">
Nick Pelly09e9cba2009-07-10 18:45:13 -070073 </activity>
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070074 <activity android:name=".opp.BluetoothOppBtErrorActivity"
75 android:process="@string/process">
Nick Pelly09e9cba2009-07-10 18:45:13 -070076 </activity>
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070077 <activity android:name=".opp.BluetoothOppBtEnablingActivity"
Alan Viverette8c2499c2015-05-29 10:35:17 -070078 android:process="@string/process"
Alan Viverette046b65c2015-06-18 14:55:33 -070079 android:theme="@android:style/Theme.Material.Light.Dialog">
Alan Viverette8c2499c2015-05-29 10:35:17 -070080 </activity>
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070081 <activity android:name=".opp.BluetoothOppIncomingFileConfirmActivity"
82 android:process="@string/process">
Nick Pelly09e9cba2009-07-10 18:45:13 -070083 </activity>
Jaikumar Ganesh6a148f12010-05-14 15:00:28 -070084 <activity android:name=".opp.BluetoothOppTransferActivity"
85 android:process="@string/process">
Nick Pelly09e9cba2009-07-10 18:45:13 -070086 </activity>
Tao Liejun888485a2009-08-31 10:48:23 +080087 <activity android:name=".pbap.BluetoothPbapActivity"
Jaikumar Ganesh0bd5f7b2010-03-24 10:36:06 -070088 android:process="@string/process"
Tao Liejun888485a2009-08-31 10:48:23 +080089 android:label=" "
Alan Viverette046b65c2015-06-18 14:55:33 -070090 android:theme="@android:style/Theme.Material.Light.Dialog.Alert">
Tao Liejun888485a2009-08-31 10:48:23 +080091 <intent-filter>
92 <category android:name="android.intent.category.DEFAULT" />
93 </intent-filter>
94 </activity>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080095 <service android:process="@string/process"
96 android:name=".pbap.BluetoothPbapService" >
Tao Liejun888485a2009-08-31 10:48:23 +080097 <action android:name="android.bluetooth.IBluetoothPbap"/>
98 </service>
Jaikumar Ganesh20b763a2010-03-11 13:06:54 -080099 <receiver android:process="@string/process"
100 android:name=".pbap.BluetoothPbapReceiver">
Tao Liejun888485a2009-08-31 10:48:23 +0800101 <intent-filter>
Nick Pellybd540682009-09-11 11:46:59 -0700102 <action android:name="android.bluetooth.adapter.action.STATE_CHANGED"/>
Tao Liejun888485a2009-08-31 10:48:23 +0800103 </intent-filter>
104 </receiver>
Nick Pelly09e9cba2009-07-10 18:45:13 -0700105 </application>
106</manifest>