码迷,mamicode.com
首页 > 其他好文 > 详细

XCode9和10编译Cordova报错toLowerCase of undefined解决方案

时间:2018-10-27 01:29:19      阅读:796      评论:0      收藏:0      [点我收藏+]

标签:and   targe   升级   ios   device   undefined   type   build   amp   

XCode升级到9或10后,cordova build时报错:toLowerCase of undefined...

解决方案:

修改platforms/ios/cordova/lib/list-emulator-build-targets文件第53行左右。原来的代码:

if (device.name === deviceType.name.replace(/\-inch/g, ‘ inch‘) &&
    device.availability.toLowerCase().indexOf(‘unavailable‘) < 0) {
    availAcc.push(device);
 }

修改为:

if (device.name === deviceType.name.replace(/\-inch/g, ‘ inch‘)) {
if ((device.availability && device.availability.toLowerCase().indexOf(‘unavailable‘) < 0)
|| device.isAvailable == ‘YES‘) {
// XCode 10 and lower
availAcc.push(device);
}
}

XCode9和10编译Cordova报错toLowerCase of undefined解决方案

标签:and   targe   升级   ios   device   undefined   type   build   amp   

原文地址:https://www.cnblogs.com/oliverreal/p/9859343.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!