wiredlain commented on issue #647:
URL: https://github.com/apache/cordova-ios/issues/647#issuecomment-728033497


   in my case, the problem was in the file 
'platforms/ios/cordova/lib/list-emulator-build-targets' line 53 app.
   
   `if (device.name === deviceType.name.replace(/\-inch/g, ' inch') && 
device.availability) {`
   when availability is doesn't exists.
   
   i change the line for this one.
   `if (device && device.name === deviceType.name.replace(/\-inch/g, ' inch') 
&&  device.isAvailable) {`


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to