Developed iOS application using Xamarin.Forms
. And trying to upload ipa
file to app store. But on Application Loader I get this error:
ERROR ITMS-90705: "Launch storyboard not found. Make sure you specify the launch storyboard filename without a filename extension for the key UILaunchStoryboardName in the Info.plist."
NOTE: I searched for solution but found nothing with this specific error. I have already
<key>UILaunchStoryboardName</key>
<string>LaunchScreen.storyboard</string>
key in info.plist file
The error specifies that you have to provide the storyboard file without the extension. Try to remove the .storyboard from the key and try again.
Also, I presume the file does exist?