Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 88475015 authored by williamvds's avatar williamvds
Browse files

Provide adaptive icons

parent 424b71cd
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -55,7 +55,8 @@
    <application
        android:name="com.fsck.k9.App"
        android:allowTaskReparenting="false"
        android:icon="@mipmap/icon"
        android:icon="@drawable/ic_launcher"
        android:roundIcon="@drawable/ic_launcher_round"
        android:label="@string/app_name"
        android:theme="@style/Theme.K9.Startup"
        android:resizeableActivity="true"
@@ -389,7 +390,7 @@

        <receiver
            android:name=".widget.unread.UnreadWidgetProvider"
            android:icon="@mipmap/icon"
            android:icon="@drawable/ic_launcher"
            android:label="@string/unread_widget_label">
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
+7 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@color/icon_background"/>
    <foreground>
        <inset android:drawable="@mipmap/icon" android:inset="20%"/>
    </foreground>
</adaptive-icon>
+7 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@color/icon_background"/>
    <foreground>
        <inset android:drawable="@mipmap/icon" android:inset="24%"/>
    </foreground>
</adaptive-icon>
+5 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <drawable name="ic_launcher">@mipmap/ic_launcher</drawable>
    <drawable name="ic_launcher_round">@mipmap/ic_launcher_round</drawable>
</resources>
+2 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="icon_background">#ffffff</color>

    <color name="light_black">#444444</color>

    <color name="message_list_item_footer_background">#eeeeee</color>
Loading