我正在进行离子应用调试。调试之后全部。我正在尝试发布应用程序商店的更新,但它在iPhone6模拟器中完美运行。出现以下错误。
This error shows up when i am trying to add this to app store.
在此之前我已经发送了一些更新,并且没有这样的错误。
答案 0 :(得分:1)
Ionic使用cordova,自从cordova 6.0以来,iOS builder 4.1.0上存在一个错误。 您可以暂时降级cordova或iOS构建器,直到修复此错误
降级cordova(等降级iOS构建者)
var n = 6;
Document.aggregate([
{$project: {
prop: {$concatArrays: ['$sudocuments.prop1',
'$sudocuments.prop2']}}},
{$unwind: '$prop'},
{$sort: {'prop.y': 1}},
{$limit: n}
])
或
仅降级ios
sudo npm uninstall -g
sudo npm install -g cordova@5.4.1
检查iOS版本
sudo ionic platform rm ios
sudo ionic platform add ios@3.9.2
答案 1 :(得分:0)