1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Copyright (C) 2022 The Android Open Source Project
4
5  Licensed under the Apache License, Version 2.0 (the "License");
6  you may not use this file except in compliance with the License.
7  You may obtain a copy of the License at
8
9       http://www.apache.org/licenses/LICENSE-2.0
10
11  Unless required by applicable law or agreed to in writing, software
12  distributed under the License is distributed on an "AS IS" BASIS,
13  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  See the License for the specific language governing permissions and
15  limitations under the License.
16  -->
17
18<PreferenceScreen
19    xmlns:android="http://schemas.android.com/apk/res/android"
20    xmlns:settings="http://schemas.android.com/apk/res-auto"
21    android:key="user_and_account_settings_screen"
22    android:title="@string/account_dashboard_title_with_passkeys"
23    settings:keywords="@string/keywords_accounts">
24
25    <com.android.settingslib.widget.TopIntroPreference
26      android:title="@string/credman_main_settings_intro_text" />
27
28    <PreferenceCategory
29        android:key="default_service_category"
30        android:order="10"
31        android:title="@string/credman_chosen_app_title">
32
33        <com.android.settings.applications.credentials.PrimaryProviderPreference
34            android:key="default_credman_autofill_main_work"
35            android:title="@string/credman_chosen_app_title"
36            settings:searchable="false">
37            <extra
38                android:name="for_work"
39                android:value="true" />
40        </com.android.settings.applications.credentials.PrimaryProviderPreference>
41    </PreferenceCategory>
42
43    <PreferenceCategory
44        android:key="credman_category"
45        android:order="50"
46        android:persistent="false"
47        android:title="@string/credman_credentials"
48        settings:controller="com.android.settings.applications.credentials.CredentialManagerPreferenceController"
49        settings:keywords="@string/credman_keywords" />
50
51    <PreferenceCategory
52        android:key="dashboard_tile_placeholder"
53        android:order="130"/>
54
55    <SwitchPreferenceCompat
56        android:key="auto_sync_account_data"
57        android:title="@string/auto_sync_account_title"
58        android:summary="@string/auto_sync_account_summary"
59        android:order="200"
60        settings:allowDividerAbove="true"/>
61
62    <SwitchPreferenceCompat
63        android:key="auto_sync_work_account_data"
64        android:title="@string/account_settings_menu_auto_sync_work"
65        android:summary="@string/auto_sync_account_summary"
66        android:order="210"/>
67
68</PreferenceScreen>
69