1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright 2023 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<!-- Excludes all non-default ATV CF features to comply with CTS -->
18<permissions>
19    <!-- ATV CF needs some basic camera features to enable video calling, but can exclude some -->
20    <unavailable-feature name="android.hardware.camera" />
21    <unavailable-feature name="android.hardware.camera.ar" />
22    <unavailable-feature name="android.hardware.camera.autofocus" />
23    <unavailable-feature name="android.hardware.camera.concurrent" />
24    <unavailable-feature name="android.hardware.camera.flash" />
25    <unavailable-feature name="android.hardware.camera.front" />
26    <unavailable-feature name="android.hardware.camera.level.full" />
27    <unavailable-feature name="android.hardware.camera.capability.manual_sensor" />
28    <unavailable-feature name="android.hardware.camera.capability.manual_post_processing" />
29    <unavailable-feature name="android.hardware.camera.capability.raw" />
30
31    <!-- ATV CF is not designed to have telephony services by default -->
32    <unavailable-feature name="android.hardware.telephony" />
33    <unavailable-feature name="android.hardware.telephony.gsm" />
34    <unavailable-feature name="android.software.telecom" />
35
36    <!-- ATV CF is not designed to have communication (VoIP, etc.) services by default -->
37    <unavailable-feature name="android.software.connectionservice" />
38
39    <!-- ATV CF is not designed to have GPS support by default -->
40    <unavailable-feature name="android.hardware.location.gps" />
41
42    <!--
43        ATV CF supports only landscape orientation by default
44        and to date it is not designed to be rotated.
45    -->
46    <unavailable-feature name="android.hardware.screen.portrait" />
47
48    <!-- ATV CF does not support a lock screen screen by default -->
49    <unavailable-feature name="android.software.secure_lock_screen" />
50
51    <!-- ATV CF does not support credentials -->
52    <unavailable-feature name="android.software.credentials" />
53</permissions>
54