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    <com.android.settingslib.widget.TopIntroPreference
18        android:key="health_connect_top_intro"
19        android:title="@string/home_subtitle"
20        android:order="0"
21        />
22    <PreferenceCategory
23        android:key="recent_access"
24        android:title="@string/recent_access_header"
25        android:order="2"/>
26    <PreferenceCategory
27        android:key="permissions_and_data_category"
28        android:title="@string/permissions_and_data_header"
29        android:order="3">
30        <com.android.healthconnect.controller.shared.preference.HealthPreference
31            android:key="connected_apps"
32            android:icon="?attr/appPermissionsIcon"
33            android:title="@string/connected_apps_title"/>
34        <com.android.healthconnect.controller.shared.preference.HealthPreference
35            android:key="data_and_access"
36            android:icon="?attr/dataAndAccessIcon"
37            android:title="@string/data_title" />
38        <com.android.healthconnect.controller.shared.preference.HealthPreference
39            android:key="manage_data"
40            android:icon="?attr/manageDataIcon"
41            android:title="@string/manage_data_section"/>
42    </PreferenceCategory>
43</PreferenceScreen>
44