Reputation: 95
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
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 image)for app icons
Upvotes: 1
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