jithin mp
jithin mp

Reputation: 95

App icon does not support on OS 9 devices

App icon does not support on android 9 devices. Here I am sharing the code. Please reply of it:

    android:icon="@drawable/appicon"
    android:label="@string/app_name"
    android:largeHeap="true"
    android:supportsRtl="true"
    android:roundIcon="@drawable/main_icon"

Upvotes: 0

Views: 50

Answers (2)

Peter Alwin
Peter Alwin

Reputation: 239

    android:icon="@mipmap/ic_launcher_logo"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_logo_round"
    android:supportsRtl="true"

Try to use mipmap folder (i.e, create mipmap icon using existing imageenter image description here)for app icons

Upvotes: 1

PiNaKa30
PiNaKa30

Reputation: 674

You can add an icon automatically in Android Studio:

Go to menu File → New → Image Assets → select launcher icon → choose image file.

Upvotes: 0

Related Questions