1<?xml version="1.0" encoding="utf-8"?>
2<!--
3    Copyright 2018 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:title="@string/system_setting_title">
22    <Preference
23        android:fragment="com.android.car.settings.language.LanguagesAndInputFragment"
24        android:key="@string/pk_languages_and_input_settings"
25        android:icon="@drawable/ic_language"
26        android:title="@string/languages_and_input_settings"
27        settings:controller="com.android.car.settings.common.DefaultRestrictionsPreferenceController"/>
28    <Preference
29        android:icon="@drawable/ic_system_update"
30        android:key="@string/pk_system_update_settings"
31        android:title="@string/system_update_settings_title"
32        settings:controller="com.android.car.settings.system.SystemUpdatePreferenceController">
33        <intent android:action="android.settings.SYSTEM_UPDATE_SETTINGS"/>
34    </Preference>
35    <Preference
36        android:fragment="com.android.car.settings.system.AboutSettingsFragment"
37        android:icon="@drawable/ic_settings_about"
38        android:key="@string/pk_about_settings_entry"
39        android:title="@string/about_settings"
40        settings:controller="com.android.car.settings.system.AboutSettingsEntryPreferenceController"/>
41    <Preference
42        android:fragment="com.android.car.settings.system.LegalInformationFragment"
43        android:icon="@drawable/ic_settings_about"
44        android:key="@string/pk_legal_information_entry"
45        android:title="@string/legal_information"
46        settings:controller="com.android.car.settings.common.DefaultRestrictionsPreferenceController"/>
47    <Preference
48        android:fragment="com.android.car.settings.system.ResetOptionsFragment"
49        android:icon="@drawable/ic_restore"
50        android:key="@string/pk_reset_options_entry"
51        android:summary="@string/reset_options_summary"
52        android:title="@string/reset_options_title"
53        settings:controller="com.android.car.settings.common.DefaultRestrictionsPreferenceController"/>
54    <Preference
55        android:icon="@drawable/ic_settings_development"
56        android:key="@string/pk_developer_options_entry"
57        android:title="@string/developer_options_settings"
58        settings:controller="com.android.car.settings.system.DeveloperOptionsEntryPreferenceController">
59        <intent android:action="android.settings.APPLICATION_DEVELOPMENT_SETTINGS"/>
60    </Preference>
61    <com.android.car.settings.common.LogicalPreferenceGroup
62        android:key="@string/pk_system_extra_settings"
63        settings:controller="com.android.car.settings.common.ExtraSettingsPreferenceController">
64        <intent android:action="com.android.settings.action.EXTRA_SETTINGS">
65            <extra android:name="com.android.settings.category"
66                   android:value="com.android.settings.category.ia.system"/>
67        </intent>
68    </com.android.car.settings.common.LogicalPreferenceGroup>
69</PreferenceScreen>
70