tema6120 / ForgetMeNot

A flashcard app for Android.
GNU General Public License v3.0
384 stars 41 forks source link

Add monochrome icon #82

Open xmha97 opened 1 year ago

xmha97 commented 1 year ago

Please support the Android 13 "Themed App Icons" feature.

Screenshot_2023-04-09-03-49-22-751_de mm20 launcher2 release

iBhokary-dev commented 1 year ago

irrelevant

xmha97 commented 1 year ago

irrelevant

It's an Android feature not an icon pack.

surfmuggle commented 8 months ago

Update

As far as i understand this commit on 23rd of April 2023 adaptive icons should be supported. If the monochrome feature is supported as well is unclear to me based on the preview of the images in the commit.

Previous comment

From Features and APIs Overview for Android 13

Starting with Android 13, you can opt in to themed app icons. With this feature, app icons in supported Android launchers are tinted to inherit the coloring of the user’s chosen wallpaper and other themes.

To support this feature, your app must provide both an adaptive icon and a monochromatic app icon, and point to the monochromatic app icon from the element in the manifest. If a user has enabled themed app icons (in other words, turned on the Themed icons toggle in system settings), and the launcher supports this feature, the system uses the coloring of the user’s chosen wallpaper and theme to determine the tint color, which it then applies to the monochromatic app icon.

@xmha97 Can you provide an adaptive icon and create a pull request where you update the android:icon attribute in the app manifest file

<application
    ...
    android:icon="@mipmap/ic_launcher"
    android:roundIcon="@mipmap/ic_launcher_round"
    ...>
</application>

and all other files?