• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
20    <!-- Service information to get screen mirroring information -->
21    <string name="config_msg_mirroring_service_pkg_name" translatable="false">
22        com.android.car.multidisplay.controlcenter
23    </string>
24    <string name="config_msg_mirroring_service_class_name" translatable="false">
25        com.android.car.multidisplay.controlcenter.service.ControlCenterService
26    </string>
27
28    <!--
29        Keep in sync with the config file in {@link com.android.car.multidisplay.controlcenter}
30        ControlCenterService constants that allow other apps to get information about mirrored apps
31    -->
32    <integer name="config_msg_register_mirroring_pkg_code">1</integer>
33    <integer name="config_msg_unregister_mirroring_pkg_code">2</integer>
34    <integer name="config_msg_send_mirroring_pkg_code">3</integer>
35    <string name="config_msg_mirroring_pkg_name_key" translatable="false">
36        msg_mirroring_pkg_name_key
37    </string>
38    <string name="config_msg_mirroring_redirect_uri_key" translatable="false">
39        msg_mirroring_redirect_uri_key
40    </string>
41
42    <!--- The number of days to wait before resurfacing the terms of service banner
43         on the app grid after being dismissed
44
45         * Integer value 0 implies to show the banner after every reboot
46   -->
47    <integer name="config_tos_banner_resurface_time_days">1</integer>
48    <!--    Config for displaying the terms of service banner on the app grid. -->
49    <bool name="config_enable_tos_banner">true</bool>
50</resources>
51