.NET MAUI App Icon and Splash screen cannot be customized
See original GitHub issueOkay sooooo… I ran into this same issue however, I’ve managed to get it working with my own custom app icon and well as my own custom splash screen. Albeit it’s not an animated splash screen, I was getting the exact same issues described above.
What I did was this.
- Opened the Emulator and deleted the actual app from the device ( which I don’t think was necessary)
- Renamed the old SVG files to splash_old.svg and appiconfg_old.svg respectively ( which I don’t think was necessary)
- Added my custom splash.svg and appiconfg.svg files into their respective folders
- Edited the csproj file namely removing this
Color="#512BD4"from this line<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg"/> - Run a Rebuild Solution
- Run Build to Pixel 5 - API 33 (Android 13.0 - API 33)
Custom Icon:
Custom Splash Screen:
Hope this helps.
https://github.com/dotnet/maui/issues/10079#issue-1370643762
Issue Analytics
- State:
- Created a year ago
- Comments:10 (3 by maintainers)
Top Results From Across the Web
Add a splash screen to a .NET MAUI app project
A .NET MAUI splash screen can be displayed on Android and iOS when an app is launched, while the app's initialization process completes....
Read more >Cannot change .NET MAUI Blazor Splash screen on IOS
1 Answer 1 ... There currently is a bug in MAUI's resizetizer. As a workaround, you need to actually provide a new name...
Read more >Episode 40 - Custom app icons / splash screen for MAUI ...
This video demonstrates how to create a custom app icon and splash screen for a MAUI app. We specifically focus on Android apps...
Read more >.NET MAUI App: MAUI app icon, MAUI splash screen, and ...
NET MAUI ) apps can display a splash screen while their initialization process completes. The splash screen is displayed immediately when an app...
Read more >Let's customize the Splash Screen of a MAUI app - Julian's Blog
In this blog post I explain how to modify the splash screen of a MAUI app for Android and iOS with your own...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I think this PR will fix the splash screen since we now hash both the contents and the attibutes of splash screens: https://github.com/dotnet/maui/pull/10812
But, icons are just normal images with a special attribute so I may need to verify that there is somehting similar for images.
Update
Using Version 17.4.0 after the Preview version of Microsoft Visual Studio Community 2022 (64-bit) seems to have fixed the issue.
I’ll close this issue now.