Xcode-beta error when try emulate with Ionic -


i'm try started ionic when emulate 'ionic emulate ios' console show me issue:

no target specified emulator. deploying iphone-6 simulator 2015-06-19 10:07:59.674 ios-sim[771:9114] stderrpath:   /users/damivazbien/myapp/platforms/ios/cordova/console.log 2015-06-19 10:07:59.674 ios-sim[771:9114] stdoutpath:  /users/damivazbien/myapp/platforms/ios/cordova/console.log 2015-06-19 10:08:00.753 ios-sim[771:9114] [mt] dvtassertions: warning in /library/caches/com.apple.xbs/sources/dvtframeworks/dvtframeworks-8114.19/dvtfoundation/pluginarchitecture/pluginmanager/dvtpluginmanager.m:257 details:  requested did not find extension point identifier xcode.dvtfoundation.deviceplatformmapping object:   <dvtpluginmanager: 0x7fe8faca4b50> method:   -extensionpointwithidentifier: thread:   <nsthread: 0x7fe8fac105e0>{number = 1, name = main} please file bug @ http://bugreport.apple.com warning  message , useful information can provide. session not started: error domain=dtiphonesimulatorerrordomain  code=2 "timed out waiting device boot" userinfo=0x7fe8fad0c7a0  {nslocalizeddescription=timed out waiting device boot} error code 1 command: ios-sim args: launch,/users/damivazbien/myapp/platforms/ios/build/emulator/myapp.app,-- devicetypeid,com.apple.coresimulator.simdevicetype.iphone-6,-- stderr,/users/damivazbien/myapp/platforms/ios/cordova/console.log,-- stdout,/users/damivazbien/myapp/platforms/ios/cordova/console.log,--exit error: /users/damivazbien/myapp/platforms/ios/cordova/run: command failed exit code 2 @ childprocess.whendone (/usr/local/lib/node_modules/cordova/node_modules/cordova-lib/src/cordova/superspawn.js:134:23) @ childprocess.emit (events.js:98:17) @ maybeclose (child_process.js:766:16) @ process.childprocess._handle.onexit (child_process.js:833:5) 

now have installed last xcode beta

did check details in stderr logs?

%project_name%/platforms/ios/cordova/console.log 

if use ios9 emulator , see white screen, possible faced problem ios9 enforced use https.

dirty way update xcode project config plist disable ats

platforms/ios/%project_name%/%project_name%-info.plist  

you can disable apple transport security adding config file

<key>nsapptransportsecurity</key> <dict>   <key>nsallowsarbitraryloads</key>   <true/> </dict> <key>nslocationwheninuseusagedescription</key> <string></string> 

Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -