1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2008 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 --> 16 17 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 18 xmlns:settings="http://schemas.android.com/apk/res-auto" 19 android:title="@string/about_settings"> 20 21 <!-- System update settings - launches activity --> 22 <PreferenceScreen android:key="system_update_settings" 23 android:title="@string/system_update_settings_list_item_title" 24 android:summary="@string/system_update_settings_list_item_summary"> 25 <intent android:action="android.settings.SYSTEM_UPDATE_SETTINGS" /> 26 </PreferenceScreen> 27 28 29 <PreferenceScreen android:key="additional_system_update_settings" 30 android:title="@string/additional_system_update_settings_list_item_title"> 31 <intent android:action="android.intent.action.MAIN" 32 android:targetPackage="@string/additional_system_update" 33 android:targetClass="@string/additional_system_update_menu" /> 34 </PreferenceScreen> 35 36 <!-- Device status - launches activity --> 37 <PreferenceScreen android:key="status_info" 38 android:title="@string/device_status" 39 android:summary="@string/device_status_summary" 40 android:fragment="com.android.settings.deviceinfo.Status"> 41 </PreferenceScreen> 42 43 <!-- Manual --> 44 <PreferenceScreen 45 android:key="manual" 46 android:title="@string/manual"> 47 <intent android:action="android.settings.SHOW_MANUAL" /> 48 </PreferenceScreen> 49 50 <!-- Legal Information --> 51 <PreferenceScreen 52 android:key="container" 53 android:title="@string/legal_information" 54 android:fragment="com.android.settings.LegalSettings" /> 55 56 <PreferenceScreen 57 android:key="regulatory_info" 58 android:title="@string/regulatory_labels"> 59 <intent android:action="android.settings.SHOW_REGULATORY_INFO" /> 60 </PreferenceScreen> 61 62 <PreferenceScreen 63 android:key="safety_info" 64 android:title="@string/safety_and_regulatory_info"> 65 <intent android:action="android.settings.SHOW_SAFETY_AND_REGULATORY_INFO" /> 66 </PreferenceScreen> 67 68 <!-- Feedback on the device --> 69 <PreferenceScreen android:key="device_feedback" 70 android:title="@string/device_feedback"> 71 </PreferenceScreen> 72 73 <!-- Device hardware model --> 74 <com.android.settings.DividerPreference 75 android:key="device_model" 76 android:enabled="false" 77 android:shouldDisableView="false" 78 android:selectable="false" 79 android:title="@string/model_info" 80 android:summary="@string/device_info_default" 81 settings:allowDividerAbove="true" 82 settings:allowDividerBelow="true"/> 83 84 <!-- Device firmware version --> 85 <Preference android:key="firmware_version" 86 android:enabled="false" 87 android:shouldDisableView="false" 88 android:title="@string/firmware_version" 89 android:summary="@string/device_info_default"/> 90 91 <!-- Security patch level --> 92 <PreferenceScreen android:key="security_patch" 93 android:title="@string/security_patch" 94 android:summary="@string/device_info_default"> 95 <intent android:action="android.intent.action.VIEW" 96 android:data="https://source.android.com/security/bulletin/" /> 97 </PreferenceScreen> 98 99 <!-- Device FCC equipment id --> 100 <com.android.settings.DividerPreference 101 android:key="fcc_equipment_id" 102 android:enabled="false" 103 android:shouldDisableView="false" 104 android:selectable="false" 105 android:title="@string/fcc_equipment_id" 106 android:summary="@string/device_info_default" 107 settings:allowDividerAbove="true" 108 settings:allowDividerBelow="true"/> 109 110 <!-- Device Baseband version --> 111 <com.android.settings.DividerPreference 112 android:key="baseband_version" 113 android:enabled="false" 114 android:shouldDisableView="false" 115 android:selectable="false" 116 android:title="@string/baseband_version" 117 android:summary="@string/device_info_default" 118 settings:allowDividerAbove="true" 119 settings:allowDividerBelow="true"/> 120 121 <!-- Device Kernel version --> 122 <com.android.settings.DividerPreference 123 android:key="kernel_version" 124 android:enabled="false" 125 android:shouldDisableView="false" 126 android:selectable="false" 127 android:title="@string/kernel_version" 128 android:summary="@string/device_info_default" 129 settings:allowDividerAbove="true" 130 settings:allowDividerBelow="true"/> 131 132 <!-- Detailed build version --> 133 <Preference android:key="build_number" 134 android:enabled="false" 135 android:shouldDisableView="false" 136 android:title="@string/build_number" 137 android:summary="@string/device_info_default"/> 138 139 <!-- SELinux status information --> 140 <com.android.settings.DividerPreference 141 android:key="selinux_status" 142 android:enabled="false" 143 android:shouldDisableView="false" 144 android:selectable="false" 145 android:title="@string/selinux_status" 146 android:summary="@string/selinux_status_enforcing" 147 settings:allowDividerAbove="true" 148 settings:allowDividerBelow="true"/> 149 150 </PreferenceScreen> 151