adding support for monochrome icon on Android 13

This commit is contained in:
tibbi 2022-08-18 22:08:53 +02:00
parent 92a2bab40a
commit 3ea8c52f61
2 changed files with 6 additions and 2 deletions

View File

@ -0,0 +1,3 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="108dp" android:height="108dp" android:viewportWidth="108" android:viewportHeight="108">
<path android:fillColor="#FFFFFFFF" android:pathData="M55.06 53.31c5.67 0 10.34-4.57 10.34-10.34 0-5.76-4.57-10.34-10.34-10.34-5.76 0-10.34 4.57-10.34 10.34 0 5.76 4.67 10.34 10.34 10.34zm0 5.12c-6.86 0-20.58 3.48-20.58 10.34v5.12h41.17v-5.12c0-6.86-13.72-10.34-20.58-10.34z"/>
</vector>

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/md_orange_700"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
<background android:drawable="@color/md_orange_700" />
<foreground android:drawable="@mipmap/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_monochrome" />
</adaptive-icon>