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    <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        android:layout="@layout/preference_category_compact_layout" >
33        <Preference
34            android:key="restricted_profile_enter"
35            android:title="@string/restricted_profile_switch_to" />
36        <Preference
37            android:key="restricted_profile_exit"
38            android:title="@string/restricted_profile_switch_out" />
39        <Preference
40            android:key="restricted_profile_apps"
41            android:title="@string/restricted_profile_configure_apps_title"
42            android:fragment="com.android.tv.settings.users.AppRestrictionsFragment" />
43        <Preference
44            android:key="restricted_profile_pin"
45            android:title="@string/restricted_profile_change_password_title" />
46        <Preference
47            android:key="restricted_profile_create"
48            android:title="@string/restricted_profile_create_title" />
49        <Preference
50            android:key="restricted_profile_delete"
51            android:title="@string/restricted_profile_delete_title" />
52    </PreferenceCategory>
53
54</PreferenceScreen>
55