离子cordova运行ios - 导出失败,代码为65
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了离子cordova运行ios - 导出失败,代码为65相关的知识,希望对你有一定的参考价值。
我已完成对此错误的研究。尝试运行ionic cordova run ios --livereload
时出现以下错误:
[cordova] Non-system Ruby in use. This may cause packaging to fail.
[cordova] If you use RVM, please run `rvm use system`.
[cordova] If you use chruby, please run `chruby system`.
[cordova] error: archive not found at path '/Users/yassinezeriouh/Desktop/doday2/platforms/ios/DoDay.xcarchive'
[cordova] ** EXPORT FAILED **
[cordova]
[cordova] CordovaError: Promise rejected with non-error: 'Error code 65 for command: xcodebuild with args: -exportArchive,-archivePath,DoDay.xcarchive,-exportOptionsPlist,/Users/yassinezeriouh/Desktop/doday2/platforms/ios/exportOptions.plist,-exportPath,/Users/yassinezeriouh/Desktop/doday2/platforms/ios/build/device,-allowProvisioningUpdates'
- 重新安装了ios
- 降级ios
- 所有签名在xcode中都是正确的
- 尝试使用自定义build.json
- 重新安装所有插件
在我的设备上运行xcode中的项目工作得很好,尝试解决这个问题,因为4小时,希望你能帮忙。我正在运行iOS 12,使用Xcode 10.1,cordova 8.1.2,离子4.40(项目实际上是在离子v3上运行,上个月创建的)
我的config.xml(android和ios splash / icon部分除外):
<?xml version='1.0' encoding='utf-8'?>
<widget id="io.zeriouh.censored" version="1.3" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Censored</name>
<description>Censored</description>
<author email="cen@so.red" href="http://ce.nsor.ed/">Yassine Zeriouh</author>
<content src="index.html" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<preference name="ScrollEnabled" value="false" />
<preference name="android-minSdkVersion" value="19" />
<preference name="BackupWebStorage" value="none" />
<preference name="SplashMaintainAspectRatio" value="false" />
<preference name="FadeSplashScreenDuration" value="300" />
<preference name="SplashShowOnlyFirstTime" value="false" />
<preference name="SplashScreen" value="screen" />
<preference name="SplashScreenDelay" value="100" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<engine name="android" spec="6.3.0" />
<plugin name="cordova-plugin-whitelist" spec="^1.3.3" />
<plugin name="cordova-plugin-statusbar" spec="^2.4.2" />
<plugin name="cordova-plugin-device" spec="^2.0.2" />
<plugin name="cordova-plugin-splashscreen" spec="^5.0.2" />
<plugin name="cordova-plugin-ionic-webview" spec="^2.2.0">
<variable name="ANDROID_SUPPORT_ANNOTATIONS_VERSION" value="27.+" />
</plugin>
<plugin name="cordova-plugin-ionic-keyboard" spec="^2.1.3" />
<plugin name="cordova-plugin-inapppurchase" spec="~1.2.0" />
<plugin name="com.omarben.inappreview" spec="~0.0.6" />
<plugin name="cordova-plugin-admob-free" spec="~0.22.0" />
<plugin name="cordova-plugin-email-composer" spec="~0.8.15" />
<plugin name="cordova-plugin-local-notification" spec="~0.9.0-beta.2" />
<plugin name="cordova-plugin-badge" spec="~0.8.7" />
<plugin name="cordova-plugin-apprate" spec="~1.4.0" />
<engine name="ios" spec="~4.5.5" />
</widget>
答案
试试这个,因为xcode 10.1现在以不同的方式构建离子3
ionic cordova run ios -- --buildFlag="-UseModernBuildSystem=0" --livereload
另一答案
"cordova-ios": "4.5.5"
存在问题。请尝试以下步骤。
ionic cordova platform rm ios
npm uninstall cordova-ios
npm install cordova-ios@4.4.0
ionic cordova platform add ios@4.4.0
ionic cordova run ios --livereload
另一答案
对我来说,在将我的cordova-ios版本从4.5.5更改为4.4.0后,它仍然有效。
- 在
package.json
我改变了"cordova-ios": "4.5.5"
到"cordova-ios": "4.4.0"
- 在config.xml中我将
<engine name="ios" spec="4.5.5" />
更改为<engine name="ios" spec="4.4.0" />
rm -rf node_modules/ platforms/ios/
npm i
ionic cordova build ios
以上是关于离子cordova运行ios - 导出失败,代码为65的主要内容,如果未能解决你的问题,请参考以下文章
存档成功,但导出失败:cordova build ios --release
运行cordova build ios --release(退出代码1)时发生错误[关闭]
由于找不到“Cordova/CDVViewController.h”文件,离子应用程序存档在 xcode 7.2 中失败