Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is the Android App Icon not coming up in App Info and Clear Tasks?

I have successfully changed the App Icon for the Android App and is being displayed properly in Menu with logo and app name as iTest Game.

App Icon in Menu

But the app icon is not coming in App Info and in Clear Tasks.

App Icon in App Info & Clear Task

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.itestgame">

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".Home">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".Activity1" />
        <activity android:name=".GameOver" />
        <activity android:name=".Activity2" />
        <activity android:name=".Activity3" />
        <activity android:name=".Activity4" />
        <activity android:name=".Activity5" />
        <activity android:name=".Activity6" />
        <activity android:name=".MainActivity"></activity>
    </application>

</manifest>

My phone models are Xiaomi Redmi Note 3 and Samsung Galaxy Grand Quattro. I am not able to figure out why the App Icon is not coming at these places.

Thanks in advance.

like image 703
Nik Avatar asked Nov 19 '25 01:11

Nik


1 Answers

The fix for the issue is:

  1. Change the default icon to the new app logo at both android:icon="@mipmap/ic_launcher" and android:roundIcon="@mipmap/ic_launcher_round"
  2. Try Clean Build, uninstall and re-install the app.

Thanks for all the comments.

like image 171
Nik Avatar answered Nov 20 '25 14:11

Nik



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!