1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2021 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<!-- Feature flags for PC devices. -->
18<permissions>
19    <!-- Freeform window management -->
20    <feature name="android.software.freeform_window_management" />
21
22    <!-- This is a 'PC' device controlled primarily via keyboard, mouse and
23         touchpad. Touchscreen optional. -->
24    <feature name="android.hardware.type.pc" />
25
26     <!-- For PC-like device we mainly uses hardware keyboards. -->
27    <unavailable-feature name="android.software.input_methods" />
28
29    <!-- For PC-like device we usually don't have telephony. -->
30    <!-- These features are added in handheld_core_hardware.xml. -->
31    <unavailable-feature name="android.hardware.telephony" />
32    <unavailable-feature name="android.hardware.telephony.data" />
33    <unavailable-feature name="android.hardware.telephony.gsm" />
34    <unavailable-feature name="android.hardware.telephony.messaging" />
35    <unavailable-feature name="android.hardware.telephony.ims" />
36    <unavailable-feature name="android.hardware.telephony.radio.access" />
37    <unavailable-feature name="android.hardware.telephony.subscription" />
38
39    <!-- PC-like device should not support MOTION_TRACKING capability level. -->
40    <unavailable-feature name="android.hardware.camera.ar" />
41
42    <!-- Currently, Picture-In-Picture is not enabled for PC. -->
43    <unavailable-feature name="android.software.picture_in_picture" />
44
45    <!-- Disabling voice recognizers for fixing CTS b/215277148 -->
46    <unavailable-feature name="android.software.voice_recognizers" />
47
48    <!-- For PC-like device we usually don't have GPS. b/221120472 -->
49    <unavailable-feature name="android.hardware.location.gps" />
50
51    <!-- For PC-like device we usually don't have these sensors. -->
52    <unavailable-feature name="android.hardware.sensor.accelerometer" />
53    <unavailable-feature name="android.hardware.sensor.hinge_angle" />
54    <unavailable-feature name="android.hardware.sensor.proximity" />
55    <unavailable-feature name="android.hardware.touchscreen" />
56</permissions>
57