ios - Xcode 8.3 libMobileGestalt MobileGestaltSupport.m:153: -


i'm using uiwebview xcode version 8.3. console continues show me error when start app , not understand means. in uiviewcontroller there no code not understand why xcode continues show me error.

i have 1 place in webview viewcontroller storyboard.

this error:-

2017-04-07 23:54:50.081592+0200 conquers[1647:697735]  libmobilegestalt mobilegestaltsupport.m:153: pid 1647 (conquers) not have sandbox access frzqaeywluvljeuek43hmg ,  not appropriately entitled 2017-04-07 23:54:50.081651+0200 conquers[1647:697735]   libmobilegestalt mobilegestalt.c:550: no access inversedeviceid (see <rdar://problem/11744455>) 

just searching on web when came across issue , found can apple error (no bugs or crash appearing error in app).

if error occurs when setup uiwebview on app. check if app has configured correctly "app transport security settings" in .plist

if inspect .plist can add hand like:

<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 me when added third-party code firebasesdk. , stops appearing after setup correctly url schemes environments. i´m assuming error appears when not fully/correctly implemented in snowball effect apple side code.

note: can try go few steps on when error occur narrow down posibilites of occurrences of error.


Comments

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -