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 18<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 19 xmlns:settings="http://schemas.android.com/apk/res-auto" 20 android:title="@string/financed_privacy_settings"> 21 22 <PreferenceCategory android:key="exposure_category" 23 android:order="200" 24 android:title="@string/financed_privacy_exposure_category" 25 android:contentDescription="@string/financed_privacy_exposure_category"> 26 <Preference android:key="enterprise_privacy_enterprise_data" 27 android:order="210" 28 android:layout_height="wrap_content" 29 android:title="@string/financed_privacy_data" 30 android:selectable="false"/> 31 <Preference android:key="enterprise_privacy_installed_packages" 32 android:order="220" 33 android:title="@string/enterprise_privacy_installed_packages" 34 android:selectable="false"/> 35 <Preference android:key="enterprise_privacy_usage_stats" 36 android:order="230" 37 android:title="@string/enterprise_privacy_usage_stats" 38 android:selectable="false"/> 39 <Preference android:key="network_logs" 40 android:order="240" 41 android:title="@string/enterprise_privacy_network_logs" 42 android:selectable="false"/> 43 <Preference android:key="bug_reports" 44 android:order="250" 45 android:title="@string/enterprise_privacy_bug_reports" 46 android:selectable="false"/> 47 <Preference android:key="security_logs" 48 android:order="260" 49 android:title="@string/enterprise_privacy_security_logs" 50 android:selectable="false"/> 51 </PreferenceCategory> 52 53 <PreferenceCategory android:title="@string/financed_privacy_exposure_changes_category" 54 android:order="300" 55 android:key="exposure_changes_category"> 56 <Preference android:fragment="com.android.settings.enterprise.ApplicationListFragment$EnterpriseInstalledPackages" 57 android:order="310" 58 android:key="number_enterprise_installed_packages" 59 android:title="@string/enterprise_privacy_enterprise_installed_packages"/> 60 </PreferenceCategory> 61 62 <PreferenceCategory android:key="device_access_category" 63 android:order="500" 64 android:title="@string/enterprise_privacy_device_access_category"> 65 <Preference android:key="enterprise_privacy_lock_device" 66 android:order="510" 67 android:title="@string/financed_privacy_lock_device" 68 android:selectable="false"/> 69 <Preference android:key="enterprise_privacy_wipe_device" 70 android:order="520" 71 android:title="@string/financed_privacy_wipe_device" 72 android:selectable="false"/> 73 <Preference android:key="failed_password_wipe_current_user" 74 android:order="530" 75 android:title="@string/financed_privacy_failed_password_wipe_device" 76 android:selectable="false"/> 77 </PreferenceCategory> 78 79 <com.android.settingslib.widget.FooterPreference 80 android:key="financed_privacy_footer" 81 android:title="@string/financed_privacy_header" 82 android:selectable="false" 83 settings:searchable="false"/> 84</PreferenceScreen> 85