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/apps_settings_title" 22 android:key="@string/psk_apps"> 23 <Preference 24 android:fragment="com.android.car.settings.applications.ApplicationsSettingsFragment" 25 android:key="@string/pk_applications_settings_screen_entry" 26 android:title="@string/all_applications" 27 settings:controller="com.android.car.settings.applications.AllAppsPreferenceController"/> 28 <com.android.car.settings.common.LogicalPreferenceGroup 29 android:key="@string/pk_recent_apps_group" 30 settings:controller="com.android.car.settings.applications.RecentAppsGroupPreferenceController"> 31 <PreferenceCategory 32 android:key="@string/pk_recent_apps_list" 33 android:title="@string/apps_recently_opened" 34 settings:controller="com.android.car.settings.applications.RecentAppsListPreferenceController" 35 settings:searchable="false"/> 36 <Preference 37 android:fragment="com.android.car.settings.applications.ApplicationsSettingsFragment" 38 android:key="@string/pk_recent_apps_view_all" 39 settings:controller="com.android.car.settings.applications.RecentAppsViewAllPreferenceController"/> 40 <com.android.car.settings.common.DividerPreference/> 41 </com.android.car.settings.common.LogicalPreferenceGroup> 42 <Preference 43 android:key="@string/pk_app_permissions_entry" 44 android:title="@string/apps_permission_manager_title" 45 android:summary="@string/app_permissions_summary" 46 settings:controller="com.android.car.settings.common.DefaultRestrictionsPreferenceController"> 47 <intent android:action="android.intent.action.MANAGE_PERMISSIONS"/> 48 </Preference> 49 <Preference 50 android:key="@string/pk_default_applications_settings_entry" 51 android:title="@string/default_applications" 52 android:summary="@string/apps_default_apps_summary" 53 settings:controller="com.android.car.settings.common.DefaultRestrictionsPreferenceController"> 54 <intent android:action="android.settings.MANAGE_DEFAULT_APPS_SETTINGS"/> 55 </Preference> 56 <Preference 57 android:key="@string/pk_hibernated_apps" 58 android:title="@string/unused_apps" 59 settings:controller= 60 "com.android.car.settings.applications.HibernatedAppsPreferenceController"> 61 <intent android:action="android.intent.action.MANAGE_UNUSED_APPS"/> 62 </Preference> 63 <Preference 64 android:fragment="com.android.car.settings.applications.specialaccess.SpecialAccessSettingsFragment" 65 android:key="@string/pk_special_access_entry" 66 android:title="@string/special_access" 67 android:summary="@string/apps_special_app_access_summary" 68 settings:controller="com.android.car.settings.common.DefaultRestrictionsPreferenceController"/> 69</PreferenceScreen> 70