1<?xml version="1.0" encoding="utf-8"?>
2<!--
3    Copyright 2019 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
19    xmlns:android="http://schemas.android.com/apk/res/android"
20    xmlns:settings="http://schemas.android.com/apk/res-auto"
21    android:title="@string/special_access">
22    <Preference
23        android:fragment="com.android.car.settings.applications.specialaccess.ModifySystemSettingsFragment"
24        android:key="@string/pk_modify_system_settings_entry"
25        android:title="@string/modify_system_settings_title"
26        settings:controller="com.android.car.settings.common.DefaultRestrictionsPreferenceController"/>
27    <Preference
28        android:fragment="com.android.car.settings.applications.specialaccess.NotificationAccessFragment"
29        android:key="@string/pk_notification_access_entry"
30        android:title="@string/notification_access_title"
31        settings:controller="com.android.car.settings.common.DefaultRestrictionsPreferenceController"/>
32    <Preference
33        android:fragment="com.android.car.settings.applications.specialaccess.PremiumSmsAccessFragment"
34        android:key="@string/pk_premium_sms_access_entry"
35        android:title="@string/premium_sms_access_title"
36        settings:controller="com.android.car.settings.applications.specialaccess.PremiumSmsAccessEntryPreferenceController"/>
37    <Preference
38        android:fragment="com.android.car.settings.applications.specialaccess.UsageAccessFragment"
39        android:key="@string/pk_usage_access_entry"
40        android:title="@string/usage_access_title"
41        settings:controller="com.android.car.settings.common.DefaultRestrictionsPreferenceController"/>
42    <Preference
43        android:fragment="com.android.car.settings.applications.specialaccess.WifiControlFragment"
44        android:key="@string/pk_wifi_control_entry"
45        android:title="@string/wifi_control_title"
46        settings:controller="com.android.car.settings.common.DefaultRestrictionsPreferenceController"/>
47    <Preference
48        android:key="@string/pk_more_special_access"
49        android:title="@string/more_special_access_title"
50        settings:controller="com.android.car.settings.applications.specialaccess.MoreSpecialAccessPreferenceController"/>
51</PreferenceScreen>
52