I am having issues trying to change the default splash screen when i deploy to iOS. I have changed the splash to a .png file I made and updated the .csproj file like this
<MauiSplashScreen Include="Resources\Splash\uglsplash.png" BaseSize="512,515" Color="#FFFFFF"/>
If I run an android emulator, it shows correctly, but when I deploy to iPad it just shows the .NET default splash screen.
What am I doing wrong here?
Thank you kindly
Edit:
Converting my png to svg and naming everything as the default MAUI template app fixed the issue.
I am having issues trying to change the default splash screen when i deploy to iOS. I have changed the splash to a .png file I made and updated the .csproj file like this
<MauiSplashScreen Include="Resources\Splash\uglsplash.png" BaseSize="512,515" Color="#FFFFFF"/>
If I run an android emulator, it shows correctly, but when I deploy to iPad it just shows the .NET default splash screen.
What am I doing wrong here?
Thank you kindly
Edit:
Converting my png to svg and naming everything as the default MAUI template app fixed the issue.
Share Improve this question edited Apr 1 at 21:45 Clinton Wheeler asked Mar 28 at 5:12 Clinton WheelerClinton Wheeler 112 bronze badges 4- Remove .png, delete bin and obj folder and recompile. – Isidoros Moulas Commented Mar 29 at 22:48
- Do you have the same issue when using svg file instead of png? How did you deploy the app on your physical iPad, by Hot Restart or Pairing to Mac? – WenyanZhang Commented Mar 31 at 7:15
- Im pairing to my mac, changing all the files to .svg fixed the problem – Clinton Wheeler Commented Apr 1 at 21:44
- I make an answer. Glad you solved the problem. – WenyanZhang Commented Apr 2 at 1:06
1 Answer
Reset to default 0Using svg file instead of png. Glad you solved the problem.