1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2016 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 android:title="@string/system_security"> 20 <Preference 21 android:key="unknown_sources" 22 android:title="@string/security_unknown_sources_title" 23 android:summary="@string/security_unknown_sources_desc" 24 android:fragment="com.android.tv.settings.device.apps.specialaccess.ExternalSources" /> 25 <PreferenceCategory 26 android:key="restricted_profile_group" 27 android:title="@string/user_new_profile_name"> 28 <Preference 29 android:key="restricted_profile_enter" 30 android:title="@string/restricted_profile_switch_to" /> 31 <Preference 32 android:key="restricted_profile_exit" 33 android:title="@string/restricted_profile_switch_out" /> 34 <Preference 35 android:key="restricted_profile_apps" 36 android:title="@string/restricted_profile_configure_apps_title" 37 android:fragment="com.android.tv.settings.users.AppRestrictionsFragment" /> 38 <Preference 39 android:key="restricted_profile_pin" 40 android:title="@string/restricted_profile_change_password_title" /> 41 <Preference 42 android:key="restricted_profile_create" 43 android:title="@string/restricted_profile_create_title" /> 44 <Preference 45 android:key="restricted_profile_delete" 46 android:title="@string/restricted_profile_delete_title" /> 47 </PreferenceCategory> 48 49 <PreferenceCategory 50 android:key="security_settings_device_admin_category"> 51 <Preference 52 android:key="manage_device_admin" 53 android:title="@string/manage_device_admin" 54 android:fragment="com.android.tv.settings.deviceadmin.DeviceAdminSettings" /> 55 56 <Preference 57 android:fragment="com.android.tv.settings.enterprise.EnterprisePrivacySettingsFragment" 58 android:key="enterprise_privacy" 59 android:title="@string/enterprise_privacy_settings" /> 60 </PreferenceCategory> 61 62</PreferenceScreen> 63