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<resources>
18    <!-- Component name of default touch IME. This resource should be overlaid if a device uses an
19         IME other than CarLatinIME. This resource should not be empty. -->
20    <string name="default_touch_input_method" translatable="false">com.android.inputmethod.latin/.CarLatinIME</string>
21    <!-- Component name of rotary IME. Empty if none. The value must be different from
22         default_touch_input_method.
23         If the value is not empty, this IME will be only used in rotary mode; otherwise, touch IME
24         will be used in both touch mode and rotary mode.  -->
25    <string name="rotary_input_method" translatable="false"></string>
26
27    <!-- Intents to launch an activity when the user nudges up, down, left, or right off the edge of
28         the screen. No activity is launched if the relevant element of this array is empty. -->
29    <string-array name="off_screen_nudge_intents" translatable="false">
30        <item></item>
31        <item></item>
32        <item></item>
33        <item></item>
34    </string-array>
35
36    <!-- Package names of projected apps. -->
37    <string-array name="projected_apps" translatable="false">
38        <item>com.google.android.embedded.projection</item>
39    </string-array>
40</resources>
41