1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2019 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 language governing permissions and
14     limitations under the License.
15-->
16<overlay>
17    <!-- Overlays string/overlayable5 with the string "Overlay One". -->
18    <item target="string/overlayable5" value="@string/overlay1"/>
19
20    <!-- Overlays string/overlayable6 and string/overlayable7 with the string "Overlay Two". -->
21    <item target="string/overlayable7" value="@string/overlay2" />
22    <item target="string/overlayable6" value="@string/overlay2" />
23
24    <!-- Overlays string/overlayable8 with a reference to @string/internal. -->
25    <item target="string/overlayable8" value="@string/overlay3" />
26
27    <!-- Overlays string/overlayable9 with a reference to @string/overlay2. The reference to
28         @string/overlay2 should be rewritten to @string/overlayable7 in the target. -->
29    <item target="string/overlayable9" value="@string/overlay4" />
30
31    <!-- Overlays string/overlayable10 with the string "yes". -->
32    <item target="string/overlayable10" value="@android:string/yes" />
33
34    <!-- Overlays string/overlayable11 with the string "Hardcoded string". -->
35    <item target="string/overlayable11" value="Hardcoded string" />
36
37    <!-- Overlays string/overlayable10 with the string "yes". -->
38    <item target="integer/config_int" value="42" />
39
40    <!-- @attr/max_lines and @id/hello_view should be rewritten to @attr/max_lines and
41         @id/hello_view in the target. -->
42    <item target="layout/hello_view" value="@layout/hello_view" />
43    <item target="attr/max_lines" value="@attr/max_lines" />
44    <item target="id/hello_view" value="@id/hello_view" />
45</overlay>
46
47
48