summaryrefslogtreecommitdiff
path: root/core/src/main/res/drawable/bg_splash.xml
blob: 929fe411aafdd2ed3a43c262bd1f0477980f3dd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <item>
        <shape android:shape="rectangle" >
            <gradient
                android:angle="-90"
                android:startColor="@color/icon_background_gradient_start"
                android:endColor="@color/icon_background_gradient_end" />
        </shape>
    </item>

    <item>
        <bitmap
            android:gravity="center"
            android:src="@drawable/ic_launcher_foreground_no_finish"/>
    </item>

</layer-list>