.NET MAUI Android AppIcon not showing

Jassim Al Rahma 26 Reputation points
2023-07-29T13:58:02.78+00:00

Hi,

I have installed my ios and android app and the AppIcon works perfectly on IOS but on Android it is still showing the android robot icon for some reason.

I have set the type of the appicon.svg to MauiIcon

and this is my csproj:

<ItemGroup>
	<MauiIcon Include="Resources\AppIcon\appicon.svg" Color="#FFFFFF" BaseSize="128,128" />
</ItemGroup>

As I mentioned I have no issue with IOS but only Android

Kindly help.

Thanks,

Jassim

.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,783 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Brice Friha 0 Reputation points
    2025-01-03T12:35:06.96+00:00

    Hey Jassim,

    In addition to what Leon recommended.

    Make sure that the Android Manifest has android:icon="@mipmap/appicon" set to <application />

    Example:

    <manifest xmlns:android="http://schemas.android.com/apk/res/android">
    	<application android:allowBackup="true" android:supportsRtl="true" android:icon="@mipmap/appicon"></application>
    ...
    </manifest>
    
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.