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/about_settings">
22    <com.android.car.ui.preference.CarUiPreference
23        android:key="@string/pk_model_info"
24        android:title="@string/model_info"
25        settings:controller="com.android.car.settings.system.ModelInfoPreferenceController"
26        settings:showChevron="false"/>
27    <com.android.car.ui.preference.CarUiPreference
28        android:key="@string/pk_firmware_version"
29        android:title="@string/firmware_version"
30        settings:controller="com.android.car.settings.system.FirmwareVersionPreferenceController"
31        settings:showChevron="false"/>
32    <com.android.car.ui.preference.CarUiPreference
33        android:key="@string/pk_security_patch"
34        android:title="@string/security_patch"
35        settings:controller="com.android.car.settings.system.SecurityPatchPreferenceController"
36        settings:showChevron="false"/>
37    <com.android.car.ui.preference.CarUiPreference
38        android:key="@string/pk_kernel_version"
39        android:title="@string/kernel_version"
40        settings:controller="com.android.car.settings.system.KernelVersionPreferenceController"
41        settings:showChevron="false"/>
42    <com.android.car.ui.preference.CarUiPreference
43        android:key="@string/pk_build_number"
44        android:title="@string/build_number"
45        settings:controller="com.android.car.settings.system.BuildNumberPreferenceController"
46        settings:showChevron="false"/>
47    <Preference
48        android:key="@string/pk_regulatory_labels"
49        android:title="@string/regulatory_labels"
50        settings:controller="com.android.car.settings.common.DefaultRestrictionsPreferenceController">
51        <intent android:action="android.settings.SHOW_REGULATORY_INFO"/>
52    </Preference>
53    <com.android.car.ui.preference.CarUiPreference
54        android:key="@string/pk_about_bluetooth_mac_address"
55        android:title="@string/bluetooth_mac_address"
56        settings:controller="com.android.car.settings.system.BluetoothMacAddressPreferenceController"
57        settings:showChevron="false"/>
58</PreferenceScreen>
59