1<!--
2  ~ Copyright (C) 2024 The Android Open Source Project
3  ~
4  ~ Licensed under the Apache License, Version 2.0 (the "License");
5  ~ you may not use this file except in compliance with the License.
6  ~ You may obtain a copy of the License at
7  ~
8  ~      http://www.apache.org/licenses/LICENSE-2.0
9  ~
10  ~ Unless required by applicable law or agreed to in writing, software
11  ~ distributed under the License is distributed on an "AS IS" BASIS,
12  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  ~ See the License for the specific language governing permissions and
14  ~ limitations under the License.
15  -->
16
17<!--Robolectric test Resources-->
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.mirroring.test
23    </string>
24    <string name="config_msg_mirroring_service_class_name" translatable="false">
25        com.android.car.mirroring.test.ServiceClassName
26    </string>
27
28    <integer name="config_msg_register_mirroring_pkg_code">1</integer>
29    <integer name="config_msg_unregister_mirroring_pkg_code">2</integer>
30    <integer name="config_msg_send_mirroring_pkg_code">3</integer>
31    <string name="config_msg_mirroring_pkg_name_key" translatable="false">
32        msg_mirroring_pkg_name_key
33    </string>
34    <string name="config_msg_mirroring_redirect_uri_key" translatable="false">
35        msg_mirroring_redirect_uri_key
36    </string>
37
38    <!-- Launcher Apps to hide -->
39    <string-array name="hidden_apps" />
40
41</resources>
42