1<?xml version="1.0" encoding="UTF-8" ?> 2<!-- 3 ~ Copyright (C) 2023 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<resources> 19 <!-- Number of apps that should be shown on Dock --> 20 <integer name="config_numDockApps">4</integer> 21 22 <!-- A list of components that are shown on Dock by default --> 23 <string-array name="config_defaultDockApps" translatable="false"> 24 <item>com.android.car.settings/com.android.car.settings.Settings_Launcher_Homepage</item> 25 <item>com.android.car.radio/com.android.car.radio.service.RadioAppService</item> 26 <item>com.android.car.dialer/com.android.car.dialer.ui.TelecomActivity</item> 27 </string-array> 28 29 <!-- A list of packages that are excluded from being shown on Dock --> 30 <string-array name="config_packagesExcludedFromDock" translatable="false"> 31 <item>com.android.car.carlauncher</item> 32 <item>android.car.usb.handler</item> 33 <item>com.google.android.carassistant</item> 34 </string-array> 35 36 <!-- A list of components that are excluded from being shown on Dock --> 37 <string-array name="config_componentsExcludedFromDock" translatable="false"> 38 <item>com.google.android.apps.maps/com.google.android.apps.gmm.car.embedded.activity.LimitedMapsActivity</item> 39 <item>com.android.car.media/com.android.car.media.MediaDispatcherActivity</item> 40 <item>com.android.car.media/com.android.car.media.MediaBlockingActivity</item> 41 <item>com.android.systemui/com.android.systemui.car.wm.activity.LaunchOnPrivateDisplayRouterActivity</item> 42 <item>com.android.car.settings/com.android.car.settings.sound.AudioRouteSelectionActivity</item> 43 </string-array> 44 45 <!-- 46 During drag and drop, when an item is dropped there are two consecutive animations: 47 1. move to the proper location and to a scaled down version (scale down) 48 2. change from the scaled down version to the final scale version (scale up) 49 --> 50 <integer name="drop_animation_scale_down_duration_ms">400</integer> 51 <integer name="drop_animation_scale_up_duration_ms">250</integer> 52 53 <!-- Duration of animation for when item is dragged over the drop location. --> 54 <integer name="excite_icon_animation_duration_ms">100</integer> 55</resources> 56