| Eugene Susla | 6ed45d8 | 2017-01-22 13:52:51 -0800 | [diff] [blame] | 1 | <?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 Susla | 6ed45d8 | 2017-01-22 13:52:51 -0800 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.BLUETOOTH"/> |
| 23 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/> |
| Jeff Sharkey | 6dcac06 | 2021-04-07 19:43:57 -0600 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE"/> |
| Jeff Sharkey | 7b14b87 | 2021-03-22 15:34:02 -0600 | [diff] [blame] | 25 | <uses-permission android:name="android.permission.BLUETOOTH_CONNECT"/> |
| 26 | <uses-permission android:name="android.permission.BLUETOOTH_SCAN"/> |
| Calvin On | 28a74fc | 2018-12-20 13:57:04 -0800 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> |
| Calvin On | 5eda9dd | 2018-12-12 15:43:28 -0800 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION"/> |
| Eugene Susla | 36e866b | 2017-02-23 18:24:39 -0800 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/> |
| 30 | <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/> |
| Eugene Susla | 1fa23ed0 | 2019-07-24 16:30:16 -0700 | [diff] [blame] | 31 | <uses-permission android:name="android.permission.RADIO_SCAN_WITHOUT_LOCATION"/> |
| Patrick Baumann | 89d9c52 | 2020-02-24 15:31:31 -0800 | [diff] [blame] | 32 | <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/> |
| Eugene Susla | 0913633 | 2020-12-04 16:01:46 -0800 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"/> |
| Evan Chen | bd4f2c2 | 2022-02-11 20:35:24 +0000 | [diff] [blame] | 34 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/> |
| Eugene Susla | 6ed45d8 | 2017-01-22 13:52:51 -0800 | [diff] [blame] | 35 | |
| 36 | <application |
| 37 | android:allowClearUserData="true" |
| 38 | android:label="@string/app_label" |
| 39 | android:allowBackup="false" |
| Patrick Baumann | 89d9c52 | 2020-02-24 15:31:31 -0800 | [diff] [blame] | 40 | android:forceQueryable="true" |
| Eugene Susla | 6ed45d8 | 2017-01-22 13:52:51 -0800 | [diff] [blame] | 41 | android:supportsRtl="true"> |
| 42 | |
| Eugene Susla | 6ed45d8 | 2017-01-22 13:52:51 -0800 | [diff] [blame] | 43 | <activity |
| Guojing Yuan | 4cfbd67 | 2024-04-16 22:36:26 +0000 | [diff] [blame] | 44 | android:name=".CompanionAssociationActivity" |
| Sergey Nikolaienkov | 9a2b8a1 | 2021-12-02 15:47:36 +0100 | [diff] [blame] | 45 | android:exported="true" |
| 46 | android:launchMode="singleInstance" |
| 47 | android:excludeFromRecents="true" |
| Ashwini Oruganti | 8c8287b | 2020-03-10 13:02:39 -0700 | [diff] [blame] | 48 | android:permission="android.permission.BIND_COMPANION_DEVICE_MANAGER_SERVICE" |
| Evan Chen | 3eef2a0 | 2022-05-05 16:44:48 -0700 | [diff] [blame] | 49 | android:configChanges="orientation|screenSize" |
| Sergey Nikolaienkov | 9a2b8a1 | 2021-12-02 15:47:36 +0100 | [diff] [blame] | 50 | android:theme="@style/ChooserActivity"/> |
| 51 | |
| Guojing Yuan | aafc593 | 2022-03-04 00:04:41 +0000 | [diff] [blame] | 52 | <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 Nikolaienkov | 9a2b8a1 | 2021-12-02 15:47:36 +0100 | [diff] [blame] | 60 | <service |
| 61 | android:name=".CompanionDeviceDiscoveryService" |
| 62 | android:exported="false" /> |
| Eugene Susla | 6ed45d8 | 2017-01-22 13:52:51 -0800 | [diff] [blame] | 63 | |
| 64 | </application> |
| 65 | |
| 66 | </manifest> |