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

Unverified Commit f20d1fb8 authored by Asher Simonds's avatar Asher Simonds Committed by LuK1337
Browse files

Etar: Dynamic icon



* Part of the new iconset made by Asher Simonds

Co-authored-by: default avatarMichael Bestas <mkbestas@lineageos.org>
Change-Id: I11a797b1b293118b5ff454781785641d21f33b5d
parent 2fef5151
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -85,6 +85,9 @@
            <meta-data android:name="android.app.shortcuts"
                android:resource="@xml/shortcuts" />

            <meta-data android:name="${applicationId}.dynamic_icons"
                android:resource="@array/calendar_icons_dynamic" />

        </activity>

        <activity-alias android:name="com.android.calendar.LaunchActivity"
+17 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     SPDX-FileCopyrightText: 2023 The LineageOS Project
     SPDX-License-Identifier: Apache-2.0
-->
<adaptive-icon
    xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@drawable/ic_launcher_background" />
    <foreground>
        <layer-list>
            <item android:drawable="@drawable/logo_calendar_midlayer" />
            <item android:drawable="@drawable/logo_calendar_dyn_day_01" />
            <item android:drawable="@drawable/logo_calendar_finish" />
        </layer-list>
    </foreground>
    <monochrome android:drawable="@drawable/logo_calendar_monochrome_dyn_day_01" />
</adaptive-icon>
+17 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     SPDX-FileCopyrightText: 2023 The LineageOS Project
     SPDX-License-Identifier: Apache-2.0
-->
<adaptive-icon
    xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@drawable/ic_launcher_background" />
    <foreground>
        <layer-list>
            <item android:drawable="@drawable/logo_calendar_midlayer" />
            <item android:drawable="@drawable/logo_calendar_dyn_day_02" />
            <item android:drawable="@drawable/logo_calendar_finish" />
        </layer-list>
    </foreground>
    <monochrome android:drawable="@drawable/logo_calendar_monochrome_dyn_day_02" />
</adaptive-icon>
+17 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     SPDX-FileCopyrightText: 2023 The LineageOS Project
     SPDX-License-Identifier: Apache-2.0
-->
<adaptive-icon
    xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@drawable/ic_launcher_background" />
    <foreground>
        <layer-list>
            <item android:drawable="@drawable/logo_calendar_midlayer" />
            <item android:drawable="@drawable/logo_calendar_dyn_day_03" />
            <item android:drawable="@drawable/logo_calendar_finish" />
        </layer-list>
    </foreground>
    <monochrome android:drawable="@drawable/logo_calendar_monochrome_dyn_day_03" />
</adaptive-icon>
+17 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     SPDX-FileCopyrightText: 2023 The LineageOS Project
     SPDX-License-Identifier: Apache-2.0
-->
<adaptive-icon
    xmlns:android="http://schemas.android.com/apk/res/android">
    <background android:drawable="@drawable/ic_launcher_background" />
    <foreground>
        <layer-list>
            <item android:drawable="@drawable/logo_calendar_midlayer" />
            <item android:drawable="@drawable/logo_calendar_dyn_day_04" />
            <item android:drawable="@drawable/logo_calendar_finish" />
        </layer-list>
    </foreground>
    <monochrome android:drawable="@drawable/logo_calendar_monochrome_dyn_day_04" />
</adaptive-icon>
Loading