63 lines
3.0 KiB
XML
63 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2018 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/security_settings_title"
|
|
android:key="@string/psk_security_settings">
|
|
<Preference
|
|
android:icon="@drawable/ic_lock"
|
|
android:key="@string/pk_choose_lock_type"
|
|
android:title="@string/security_profile_lock_title"
|
|
settings:controller="com.android.car.settings.security.ChooseLockTypePreferenceController"/>
|
|
<com.android.car.ui.preference.CarUiPreference
|
|
android:key="@string/pk_credentials_reset"
|
|
android:summary="@string/credentials_reset_summary"
|
|
android:title="@string/credentials_reset"
|
|
settings:controller="com.android.car.settings.security.CredentialsResetPreferenceController"
|
|
settings:showChevron="false">
|
|
<intent
|
|
android:action="com.android.credentials.RESET"
|
|
android:targetPackage="com.android.car.settings"/>
|
|
</com.android.car.ui.preference.CarUiPreference>
|
|
<com.android.car.settings.common.LogicalPreferenceGroup
|
|
android:key="@string/pk_system_extra_settings"
|
|
settings:controller="com.android.car.settings.common.ExtraSettingsPreferenceController">
|
|
<intent>
|
|
<extra android:name="com.android.settings.category"
|
|
android:value="com.android.settings.category.ia.security"/>
|
|
</intent>
|
|
</com.android.car.settings.common.LogicalPreferenceGroup>
|
|
<Preference
|
|
android:icon="@drawable/ic_corp_icon"
|
|
android:key="@string/pk_enterprise_privacy_settings"
|
|
android:title="@string/enterprise_privacy_settings"
|
|
android:summary="@string/empty_placeholder"
|
|
android:fragment="com.android.car.settings.enterprise.EnterprisePrivacySettingsFragment"
|
|
settings:controller=
|
|
"com.android.car.settings.enterprise.EnterprisePrivacySettingsPreferenceController" />
|
|
<Preference
|
|
android:icon="@drawable/ic_storage_apps"
|
|
android:key="@string/pk_manage_device_admin_settings"
|
|
android:title="@string/manage_device_admin"
|
|
android:summary="@string/empty_placeholder"
|
|
android:fragment="com.android.car.settings.enterprise.DeviceAdminAppsFragment"
|
|
settings:controller=
|
|
"com.android.car.settings.enterprise.ManageDeviceAdminPreferenceController" />
|
|
</PreferenceScreen>
|