1<?xml version="1.0" encoding="UTF-8" ?> 2<!-- 3 ~ Copyright (C) 2020 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 <!-- A list of package names that provide the cards to display on the home screen --> 20 <string-array name="config_homeCardModuleClasses" translatable="false"> 21 <item>com.android.car.carlauncher.homescreen.assistive.AssistiveCard</item> 22 <item>com.android.car.carlauncher.homescreen.audio.AudioCard</item> 23 </string-array> 24 25 <!-- 26 A list of preferred intents to use for displaying the maps card. Intents 27 are formatted according to Intent.URI_ANDROID_APP_SCHEME. 28 This list will be used as follows: 29 30 * Pick the first item that is in the same package as the default handler 31 for CATEGORY_APP_MAPS. 32 * Pick the default handler if no such item is in the list. 33 * Pick the first item from the list if there is no default handler. 34 --> 35 <string-array name="config_homeCardPreferredMapActivities" translatable="false"> 36 <!-- 37 <item>android-app://com.example.map#Intent;category=android.intent.category.GADGET;end</item> 38 <item>android-app://com.example.nav#Intent;component=com.example.nav/.MapsCardActivity;end</item> 39 --> 40 </string-array> 41</resources> 42