1<?xml version="1.0" encoding="utf-8"?><!--
2  ~ Copyright 2024 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  ~      https://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  -->
18
19<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
20    xmlns:app="http://schemas.android.com/apk/res-auto">
21
22    <com.android.settingslib.widget.AppHeaderPreference
23        android:key="manage_app_permission_header" />
24
25    <com.android.healthconnect.controller.shared.preference.HealthSwitchPreference
26        android:key="key_history_read"
27        android:title="@string/historic_access_title"
28        android:summary="@string/historic_access_description"
29        app:isPreferenceVisible="false"
30        />
31
32    <com.android.healthconnect.controller.shared.preference.HealthSwitchPreference
33        android:key="key_background_read"
34        android:title="@string/background_read_title"
35        android:summary="@string/background_read_description"
36        app:isPreferenceVisible="false"
37        />
38
39    <com.android.healthconnect.controller.shared.preference.HealthPreference
40        android:key="key_exercise_routes_permission"
41        android:title="@string/route_permissions_label"
42        app:isPreferenceVisible="false" />
43
44    <com.android.settingslib.widget.FooterPreference
45        android:key="key_additional_access_footer"
46        android:title="@string/additional_access_combined_footer"
47        app:isPreferenceVisible="false"/>
48
49</PreferenceScreen>