1<?xml version='1.0' encoding="utf-8"?>
2<!--
3 * Copyright (c) 2022 Huawei Device Co., Ltd.
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 <Configs>
17   <!--decor enable is true means app main window show decoration-->
18    <decor enable="true"></decor>
19    <!--minimizeByOther enable is true means fullscreen window will be minmized by other fullscreen window-->
20    <minimizeByOther enable="true"></minimizeByOther>
21    <!--exit split screen mode ratio config-->
22    <exitSplitRatios>0.1 0.9</exitSplitRatios>
23    <!--split screen ratios config-->
24    <splitRatios>0.5 0.33 0.67</splitRatios>
25    <!--window animation config-->
26    <windowAnimation>
27        <scale>0.7 0.7</scale>
28    </windowAnimation>
29    <keyboardAnimation>
30        <animationIn>
31            <timing>
32                <duration>500</duration>
33                <curve name="cubic">0.2 0.0 0.2 1.0</curve>
34            </timing>
35        </animationIn>
36        <animationOut>
37            <timing>
38                <duration>300</duration>
39                <curve name="cubic">0.2 0.0 0.2 1.0</curve>
40            </timing>
41        </animationOut>
42    </keyboardAnimation>
43 </Configs>
44