1<?xml version="1.0" encoding="utf-8"?><!--
2  Copyright (C) 2022 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<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
17    xmlns:app="http://schemas.android.com/apk/res-auto">
18    <com.android.settingslib.widget.AppHeaderPreference android:key="manage_app_permission_header" />
19    <com.android.healthconnect.controller.shared.preference.HealthMainSwitchPreference
20        android:key="allow_all_preference"
21        android:title="@string/request_permissions_allow_all" />
22    <PreferenceCategory
23        android:key="read_permission_category"
24        android:title="@string/manage_permissions_read_header"
25        app:isPreferenceVisible="false" />
26    <PreferenceCategory
27        android:key="write_permission_category"
28        android:title="@string/manage_permissions_write_header"
29        app:isPreferenceVisible="false" />
30
31    <PreferenceCategory
32        android:key="manage_app_category"
33        android:title="@string/manage_permissions_manage_app_header"
34        app:isPreferenceVisible="false"/>
35
36    <com.android.settingslib.widget.FooterPreference
37        android:key="manage_app_permission_footer"
38    />
39</PreferenceScreen>
40