1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2021 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<PreferenceScreen
18    xmlns:android="http://schemas.android.com/apk/res/android"
19    xmlns:app="http://schemas.android.com/apk/res-auto"
20    app:title="@string/preferences_title">
21
22    <PreferenceCategory
23        android:title="@string/general_preferences">
24
25        <Preference
26            android:key="sign_in_out"/>
27
28        <SwitchPreference
29            android:key="toggle_summary"
30            android:title="@string/hotword_enabled_preference"
31            android:summaryOn="@string/summary_on_toggle_preference"
32            android:summaryOff="@string/summary_off_toggle_preference"/>
33
34        <ListPreference
35            android:key="voice"
36            android:title="@string/preference_voice"
37            android:summary="@string/preference_voice_summary"/>
38
39        <SwitchPreference
40                android:key="toggle_debug_direct_send"
41                android:title="@string/debug_direct_send_preference"
42                android:summaryOn="@string/summary_on_direct_send_preference"
43                android:summaryOff="@string/summary_off_direct_send_preference"/>
44
45    </PreferenceCategory>
46</PreferenceScreen>