You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
3.8 KiB
85 lines
3.8 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Copyright (C) 2021 The Android Open Source Project
|
|
~
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
~ you may not use this file except in compliance with the License.
|
|
~ You may obtain a copy of the License at
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
~ See the License for the specific language governing permissions and
|
|
~ limitations under the License.
|
|
-->
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:settings="http://schemas.android.com/apk/res-auto"
|
|
android:title="@string/financed_privacy_settings">
|
|
|
|
<PreferenceCategory android:key="exposure_category"
|
|
android:order="200"
|
|
android:title="@string/financed_privacy_exposure_category"
|
|
android:contentDescription="@string/financed_privacy_exposure_category">
|
|
<Preference android:key="enterprise_privacy_enterprise_data"
|
|
android:order="210"
|
|
android:layout_height="wrap_content"
|
|
android:title="@string/financed_privacy_data"
|
|
android:selectable="false"/>
|
|
<Preference android:key="enterprise_privacy_installed_packages"
|
|
android:order="220"
|
|
android:title="@string/enterprise_privacy_installed_packages"
|
|
android:selectable="false"/>
|
|
<Preference android:key="enterprise_privacy_usage_stats"
|
|
android:order="230"
|
|
android:title="@string/enterprise_privacy_usage_stats"
|
|
android:selectable="false"/>
|
|
<Preference android:key="network_logs"
|
|
android:order="240"
|
|
android:title="@string/enterprise_privacy_network_logs"
|
|
android:selectable="false"/>
|
|
<Preference android:key="bug_reports"
|
|
android:order="250"
|
|
android:title="@string/enterprise_privacy_bug_reports"
|
|
android:selectable="false"/>
|
|
<Preference android:key="security_logs"
|
|
android:order="260"
|
|
android:title="@string/enterprise_privacy_security_logs"
|
|
android:selectable="false"/>
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/financed_privacy_exposure_changes_category"
|
|
android:order="300"
|
|
android:key="exposure_changes_category">
|
|
<Preference android:fragment="com.android.settings.enterprise.ApplicationListFragment$EnterpriseInstalledPackages"
|
|
android:order="310"
|
|
android:key="number_enterprise_installed_packages"
|
|
android:title="@string/enterprise_privacy_enterprise_installed_packages"/>
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:key="device_access_category"
|
|
android:order="500"
|
|
android:title="@string/enterprise_privacy_device_access_category">
|
|
<Preference android:key="enterprise_privacy_lock_device"
|
|
android:order="510"
|
|
android:title="@string/financed_privacy_lock_device"
|
|
android:selectable="false"/>
|
|
<Preference android:key="enterprise_privacy_wipe_device"
|
|
android:order="520"
|
|
android:title="@string/financed_privacy_wipe_device"
|
|
android:selectable="false"/>
|
|
<Preference android:key="failed_password_wipe_current_user"
|
|
android:order="530"
|
|
android:title="@string/financed_privacy_failed_password_wipe_device"
|
|
android:selectable="false"/>
|
|
</PreferenceCategory>
|
|
|
|
<com.android.settingslib.widget.FooterPreference
|
|
android:key="financed_privacy_footer"
|
|
android:title="@string/financed_privacy_header"
|
|
android:selectable="false"
|
|
settings:searchable="false"/>
|
|
</PreferenceScreen>
|