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.ManageExternalSources" /> 25 <SwitchPreference 26 android:key="verify_apps" 27 android:title="@string/security_verify_apps_title" 28 android:summary="@string/security_verify_apps_desc" /> 29 <PreferenceCategory 30 android:key="restricted_profile_group" 31 android:title="@string/user_new_profile_name" > 32 <Preference 33 android:key="restricted_profile_enter" 34 android:title="@string/restricted_profile_switch_to" /> 35 <Preference 36 android:key="restricted_profile_exit" 37 android:title="@string/restricted_profile_switch_out" /> 38 <Preference 39 android:key="restricted_profile_apps" 40 android:title="@string/restricted_profile_configure_apps_title" 41 android:fragment="com.android.tv.settings.users.AppRestrictionsFragment" /> 42 <Preference 43 android:key="restricted_profile_pin" 44 android:title="@string/restricted_profile_change_password_title" /> 45 <Preference 46 android:key="restricted_profile_create" 47 android:title="@string/restricted_profile_create_title" /> 48 <Preference 49 android:key="restricted_profile_delete" 50 android:title="@string/restricted_profile_delete_title" /> 51 </PreferenceCategory> 52 53 </PreferenceScreen> 54