-1

Can someone help me understand how I can set the App Icon for the release APK? I was able to set it in the APK that I run from android studio. But it is not reflecting in the release APK.

user1106888
  • 245
  • 3
  • 14
  • `it is not reflecting in the release APK` can you explain more about this. current what happened with your release APK icon – Linh Jul 16 '19 at 05:44
  • 3
    Does this answer your question? [Set icon for Android application](https://stackoverflow.com/questions/5350624/set-icon-for-android-application) – Josh Correia Jul 20 '20 at 16:58

3 Answers3

1

in your manifest :

<application
        android:name=".Main.Services.App"
        android:allowBackup="true"
        android:icon="@mipmap/yourIcon"
        android:label="@string/label"
        android:largeHeap="true"
        android:roundIcon="@mipmap/yourIcon"
        android:theme="@style/AppTheme"
        android:allowClearUserData="false"
        tools:targetAPI="19"
        android:hardwareAccelerated="true">
reyhane
  • 183
  • 1
  • 15
1

Right click on App folder > new > Image Asset > Set up your icon.

Antonio
  • 422
  • 4
  • 13
0

Setting the app icon in the Android application required changes in manifest.xml file

In Manifest file under application tag use android: icon=" path to the image icon file" Android:roundIcon="path to the image icon file" // required for latest android versions. Note:- You must have to provide both icons in order to make the icon file visible on all android versions.

Kuldeep Rathee
  • 282
  • 2
  • 7