Xcode 8.3 libMobileGestalt MobileGestaltSupport.m: 153:

I am using UIWebView xCode Version 8.3. My console continues to show me this error when starting the application, and I do not understand what this means. There is no code in my UIViewController, so I do not understand why Xcode continues to show me this error.

I have only one place in my webview viewcontroller from Storyboard.

This is mistake: -

2017-04-07 23:54:50.081592+0200 Conquers[1647:697735] libMobileGestalt MobileGestaltSupport.m:153: pid 1647 (Conquers) does not have sandbox access for frZQaeyWLUvLjeuEK43hmg and IS NOT appropriately entitled 2017-04-07 23:54:50.081651+0200 Conquers[1647:697735] libMobileGestalt MobileGestalt.c:550: no access to InverseDeviceID (see <rdar://problem/11744455>) 
+50
ios xcode xcode8 compiler-errors uiwebview
Apr 7 '17 at 22:00
source share
1 answer

Just by doing an online search when I ran into this problem and found that it could be an Apple error (no errors or crashes in this error in my application).

If the error occurs only when configuring UIWebView in your application. I would check if the application "Transport security settings in the application" in your .plist is correctly configured

if you check your .plist, you can add it manually:

 <key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> <key>NSExceptionDomains</key> <dict> <key>add-your-site-here-if-needed</key> <dict> <key>NSExceptionAllowsInsecureHTTPLoads</key> <true/> <key>NSIncludesSubdomains</key> <true/> </dict> </dict> </dict> 

This happens to me when I added third-party code, such as FirebaseSDK. And it suddenly stops appearing after properly setting up my URL schemes for all of my environments. Therefore, I assume that this error appears when something is not fully / correctly implemented, as in the snowball effect from the side of the Apple code.

NOTE. You can also try to go back a few steps when an error occurs to narrow the position of this error.

0
Aug 18 '17 at 14:47 on
source share



All Articles