Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Phonegap Error using XCode 9/iOS 11

Getting "No target specified for emulator. Deploying to undefined simulator Device type "com.apple.CoreSimulator.SimDeviceType.undefined" could not be found." error while running Phonegap project using XCode 9/iOS 11. Has anyone got workaround?

like image 594
Kirthika Vijayakumar Avatar asked Sep 22 '17 13:09

Kirthika Vijayakumar


1 Answers

Update cordova to 4.5.0

cordova plugin save
npm install -g cordova
cordova platform rm ios
cordova platform add [email protected]
cordova plugin remove cordova-plugin-console

Yes… cordova plugin console is now deprecated and needs to be removed. You will get here the details

like image 176
Flavien Volken Avatar answered Oct 09 '22 15:10

Flavien Volken