blob: 8fe771c784a970b055a7ee7f30924b82827e58b5 [file] [log] [blame]
Eugene Susla6ed45d82017-01-22 13:52:51 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4 * Copyright (c) 2017 Google Inc.
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18-->
19<manifest xmlns:android="http://schemas.android.com/apk/res/android"
20 package="com.android.companiondevicemanager">
21
Eugene Susla6ed45d82017-01-22 13:52:51 -080022 <uses-permission android:name="android.permission.BLUETOOTH"/>
23 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
Jeff Sharkey6dcac062021-04-07 19:43:57 -060024 <uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE"/>
Jeff Sharkey7b14b872021-03-22 15:34:02 -060025 <uses-permission android:name="android.permission.BLUETOOTH_CONNECT"/>
26 <uses-permission android:name="android.permission.BLUETOOTH_SCAN"/>
Calvin On28a74fc2018-12-20 13:57:04 -080027 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
Calvin On5eda9dd2018-12-12 15:43:28 -080028 <uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION"/>
Eugene Susla36e866b2017-02-23 18:24:39 -080029 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
30 <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
Eugene Susla1fa23ed02019-07-24 16:30:16 -070031 <uses-permission android:name="android.permission.RADIO_SCAN_WITHOUT_LOCATION"/>
Patrick Baumann89d9c522020-02-24 15:31:31 -080032 <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/>
Eugene Susla09136332020-12-04 16:01:46 -080033 <uses-permission android:name="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"/>
Evan Chenbd4f2c22022-02-11 20:35:24 +000034 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/>
Eugene Susla6ed45d82017-01-22 13:52:51 -080035
36 <application
37 android:allowClearUserData="true"
38 android:label="@string/app_label"
39 android:allowBackup="false"
Patrick Baumann89d9c522020-02-24 15:31:31 -080040 android:forceQueryable="true"
Eugene Susla6ed45d82017-01-22 13:52:51 -080041 android:supportsRtl="true">
42
Eugene Susla6ed45d82017-01-22 13:52:51 -080043 <activity
Guojing Yuan4cfbd672024-04-16 22:36:26 +000044 android:name=".CompanionAssociationActivity"
Sergey Nikolaienkov9a2b8a12021-12-02 15:47:36 +010045 android:exported="true"
46 android:launchMode="singleInstance"
47 android:excludeFromRecents="true"
Ashwini Oruganti8c8287b2020-03-10 13:02:39 -070048 android:permission="android.permission.BIND_COMPANION_DEVICE_MANAGER_SERVICE"
Evan Chen3eef2a02022-05-05 16:44:48 -070049 android:configChanges="orientation|screenSize"
Sergey Nikolaienkov9a2b8a12021-12-02 15:47:36 +010050 android:theme="@style/ChooserActivity"/>
51
Guojing Yuanaafc5932022-03-04 00:04:41 +000052 <activity
53 android:name=".CompanionDeviceDataTransferActivity"
54 android:exported="true"
55 android:launchMode="singleInstance"
56 android:excludeFromRecents="true"
57 android:permission="android.permission.BIND_COMPANION_DEVICE_MANAGER_SERVICE"
58 android:theme="@style/ChooserActivity"/>
59
Sergey Nikolaienkov9a2b8a12021-12-02 15:47:36 +010060 <service
61 android:name=".CompanionDeviceDiscoveryService"
62 android:exported="false" />
Eugene Susla6ed45d82017-01-22 13:52:51 -080063
64 </application>
65
66</manifest>