Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

libMobileGestalt MobileGestaltSupport.m:153: pid 1668 does not have sandbox access in Xcode console

I'm seeing this message in the Xcode console whenever I run the app:
libMobileGestalt MobileGestaltSupport.m:153: pid 1668 (APP_NAME) does not have sandbox access for frZQaejlsahdhlemg and IS NOT appropriately entitled

like image 921
MEnnabah Avatar asked Apr 19 '17 16:04

MEnnabah


1 Answers

Using Apache Cordova, in my case, I had the same issue, and after some deep searches, I found it was originally (and stupidly) due to Splashscreen.

Check/add these lines in your config.xml file :

<preference name="SplashMaintainAspectRatio" value="true" />
<preference name="FadeSplashScreenDuration" value="300" />
<preference name="SplashShowOnlyFirstTime" value="false" />
<preference name="SplashScreen" value="screen" />
<preference name="SplashScreenDelay" value="3000" />
<preference name="AutoHideSplashScreen" value="true" />
<feature name="SplashScreen">
    <param name="ios-package" onload="true" value="CDVSplashScreen" />
</feature>

And then my app worked like a charm. Hope this helps in your case.

like image 131
PAD Avatar answered Nov 09 '22 16:11

PAD