adding a monochrome icon version

This commit is contained in:
tibbi
2022-08-12 21:35:07 +02:00
parent c448d0d877
commit c55051eb14
3 changed files with 6 additions and 3 deletions

View File

@ -21,7 +21,6 @@
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_launcher_name"
android:roundIcon="@mipmap/ic_launcher"
android:theme="@style/AppTheme">
<activity
android:name=".activities.SplashActivity"

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="M34.64 51.44h39.32c1.58 0 2.86 1.28 2.86 2.86 0 1.58-1.28 2.86-2.86 2.86H34.64c-1.58 0-2.86-1.28-2.86-2.86 0-1.58 1.28-2.86 2.86-2.86zm24.79-10.76a5.13 5.13 0 0 1-5.13 5.13 5.13 5.13 0 0 1-5.13-5.13 5.13 5.13 0 0 1 5.13-5.13 5.13 5.13 0 0 1 5.13 5.13zm0 27.24a5.13 5.13 0 0 1-5.13 5.13 5.13 5.13 0 0 1-5.13-5.13 5.13 5.13 0 0 1 5.13-5.13 5.13 5.13 0 0 1 5.13 5.13z"/>
</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>