1<?xml version="1.0" encoding="utf-8"?><!--
2  Copyright 2021 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<XmlWatchFace xmlns:app="http://schemas.android.com/apk/res-auto">
17    <UserStyleSchema>
18        <ListUserStyleSetting
19            app:affectedWatchFaceLayers="BASE|COMPLICATIONS|COMPLICATIONS_OVERLAY"
20            app:defaultOptionIndex="1"
21            app:description="description"
22            app:displayName="displayName"
23            app:id="TimeStyle">
24            <ListOption
25                app:displayName="Minimal"
26                app:id="minimal" />
27            <ListOption
28                app:displayName="Seconds"
29                app:id="seconds" />
30        </ListUserStyleSetting>
31    </UserStyleSchema>
32    <ComplicationSlot
33        app:slotId="10"
34        app:boundsType="ROUND_RECT"
35        app:supportedTypes="SHORT_TEXT|RANGED_VALUE|SMALL_IMAGE"
36        app:systemDataSourceFallback="DATA_SOURCE_WATCH_BATTERY"
37        app:systemDataSourceFallbackDefaultType="RANGED_VALUE">
38        <ComplicationSlotBounds app:left="0.3" app:top="0.7" app:right="0.7" app:bottom="0.9"/>
39    </ComplicationSlot>
40    <ComplicationSlot
41        app:slotId="20"
42        app:boundsType="BACKGROUND"
43        app:supportedTypes="LONG_TEXT"
44        app:primaryDataSource="com.package/com.app"
45        app:primaryDataSourceDefaultType="LONG_TEXT"
46        app:systemDataSourceFallback="DATA_SOURCE_SUNRISE_SUNSET"
47        app:systemDataSourceFallbackDefaultType="LONG_TEXT">
48        <ComplicationSlotBounds app:left="0.1" app:top="0.2" app:right="0.3" app:bottom="0.4"/>
49    </ComplicationSlot>
50</XmlWatchFace>