Wednesday, May 15, 2019

AppIcons83.5x83.5@2x~ipad.png does not exist File

While building mp app, I was getting following error:
AppIcons83.5x83.5@2x~ipad.png does not exist File

The easiest way to solve this problem is:

Delete existing AppIcon file
Create a new AppIcon file
Add the missing icons (the iPad and other icon options will now be provided)

Also make sure the dimensions are correct. If the AppIcon file says 83.5 points with 2x file size then the dimension should be 167x167 png format etc.

No comments:

Post a Comment

Open default email app in .NET MAUI

Sample Code:  if (Email.Default.IsComposeSupported) {     string subject = "Hello!";     string body = "Excellent!";    ...