Thursday, February 2, 2017

iPad Multitasking support requires launch story board file 'LaunchScreen.storyboard' in bundle 'com.3MBSolutions.Tip'


Solution:
Add the following key to info.plist and the problem will be solved
 <key>UIRequiresFullScreen</key>
 <string>YES</string>

No comments:

Post a Comment

Open default email app in .NET MAUI

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