.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,783 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
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
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>