• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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    android:key="@string/psk_about_settings">
23    <com.android.car.ui.preference.CarUiPreference
24        android:fragment="com.android.car.settings.system.HardwareInfoFragment"
25        android:key="@string/pk_hardware_info"
26        android:title="@string/hardware_info"
27        settings:controller="com.android.car.settings.system.HardwareInfoPreferenceController"/>
28    <com.android.car.ui.preference.CarUiPreference
29        android:key="@string/pk_firmware_version"
30        android:title="@string/firmware_version"
31        settings:controller="com.android.car.settings.system.FirmwareVersionPreferenceController"
32        settings:showChevron="false"/>
33    <com.android.car.ui.preference.CarUiPreference
34        android:key="@string/pk_security_patch"
35        android:title="@string/security_patch"
36        settings:controller="com.android.car.settings.system.SecurityPatchPreferenceController"
37        settings:showChevron="false"/>
38    <com.android.car.ui.preference.CarUiPreference
39        android:key="@string/pk_kernel_version"
40        android:title="@string/kernel_version"
41        settings:controller="com.android.car.settings.system.KernelVersionPreferenceController"
42        settings:showChevron="false"/>
43    <com.android.car.ui.preference.CarUiPreference
44        android:key="@string/pk_build_number"
45        android:title="@string/build_number"
46        settings:controller="com.android.car.settings.system.BuildNumberPreferenceController"
47        settings:showChevron="false"/>
48    <Preference
49        android:key="@string/pk_regulatory_labels"
50        android:title="@string/regulatory_labels"
51        settings:controller="com.android.car.settings.system.RegulatoryInfoPreferenceController">
52        <intent android:action="android.settings.SHOW_REGULATORY_INFO"/>
53    </Preference>
54    <com.android.car.ui.preference.CarUiPreference
55        android:key="@string/pk_about_bluetooth_mac_address"
56        android:title="@string/bluetooth_mac_address"
57        settings:controller="com.android.car.settings.system.BluetoothMacAddressPreferenceController"
58        settings:showChevron="false"/>
59</PreferenceScreen>
60