86 lines
4.2 KiB
XML
86 lines
4.2 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!--
|
|
~ Copyright (C) 2020 The Android Open Source Project
|
|
~
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
~ you may not use this file except in compliance with the License.
|
|
~ You may obtain a copy of the License at
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
~ See the License for the specific language governing permissions and
|
|
~ limitations under the License.
|
|
-->
|
|
|
|
<resources>
|
|
<!-- A list of package names that provide the cards to display on the home screen -->
|
|
<string-array name="config_homeCardModuleClasses" translatable="false">
|
|
<item>com.android.car.carlauncher.homescreen.assistive.AssistiveCard</item>
|
|
<item>com.android.car.carlauncher.homescreen.audio.AudioCard</item>
|
|
</string-array>
|
|
|
|
<!--
|
|
A list of preferred intents to use for displaying the maps card. Intents
|
|
are formatted according to Intent.URI_ANDROID_APP_SCHEME.
|
|
This list will be used as follows:
|
|
|
|
* Pick the first item that is in the same package as the default handler
|
|
for CATEGORY_APP_MAPS.
|
|
* Pick the default handler if no such item is in the list.
|
|
* Pick the first item from the list if there is no default handler.
|
|
-->
|
|
<string-array name="config_homeCardPreferredMapActivities" translatable="false">
|
|
<!--
|
|
<item>android-app://com.example.map#Intent;category=android.intent.category.GADGET;end</item>
|
|
<item>android-app://com.example.nav#Intent;component=com.example.nav/.MapsCardActivity;end</item>
|
|
-->
|
|
</string-array>
|
|
|
|
<!-- An intent to start a map activity with limited functionality, optimized for small canvas.
|
|
The default map intent is used, if this value is empty or cannot be parsed as an intent
|
|
URI, for example:
|
|
"intent:#Intent;component=com.google.android.apps.maps/com.google.android.maps.LimitedMapsActivity;end"
|
|
-->
|
|
<string name="config_smallCanvasOptimizedMapIntent" translatable="false"></string>
|
|
|
|
<!--
|
|
A list of package names that will prompt a restart of the Task inside TaskView,
|
|
when the package is updated.
|
|
E.g.) If a map is running in TaskView, the package names of the map and the service
|
|
which the map depends on should be enumerated
|
|
-->
|
|
<string-array name="config_taskViewPackages" translatable="false">
|
|
</string-array>
|
|
|
|
<!--
|
|
Determines whether or not to use the RemoteCarTaskView from car-lib instead of the
|
|
CarTaskView that exists inside the CarLauncher.
|
|
-->
|
|
<bool name="config_useRemoteCarTaskView">true</bool>
|
|
|
|
<!-- Service information to get screen mirroring information -->
|
|
<string name="config_msg_mirroring_service_pkg_name" translatable="false">com.android.car.multidisplay.controlcenter</string>
|
|
<string name="config_msg_mirroring_service_class_name" translatable="false">com.android.car.multidisplay.controlcenter.service.ControlCenterService</string>
|
|
|
|
<!--
|
|
Keep in sync with the config file in {@link com.android.car.multidisplay.controlcenter}
|
|
ControlCenterService constants that allow other apps to get information about mirrored apps
|
|
-->
|
|
<integer name="config_msg_register_mirroring_pkg_code">1</integer>
|
|
<integer name="config_msg_unregister_mirroring_pkg_code">2</integer>
|
|
<integer name="config_msg_send_mirroring_pkg_code">3</integer>
|
|
<string name="config_msg_mirroring_pkg_name_key" translatable="false">msg_mirroring_pkg_name_key</string>
|
|
<string name="config_msg_mirroring_redirect_uri_key" translatable="false">msg_mirroring_redirect_uri_key</string>
|
|
<!-- Number of columns in recents that should be included in a page when snapping -->
|
|
<integer name="config_recents_columns_per_page">2</integer>
|
|
|
|
<!--
|
|
The Activity to use as a passenger Launcher, if empty, it assumes CarLauncher can do
|
|
the passenger Launcher role too.
|
|
-->
|
|
<string name="config_passengerLauncherComponent">com.android.car.multidisplay/.launcher.LauncherActivity</string>
|
|
</resources>
|