0

我使用以下视频来配置 ios 设置。

http://download.oracle.com/otn_hosted_doc/jdeveloper/11gdemos/adfmobiledeployios.html

但是,当我在设备中部署应用程序时,出现以下错误。

[03:27:06 PM] xcrun: Error: could not stat active Xcode path '/Volumes/Xcode/Xcode.app/Contents/Developer'. (No such file or directory)
[03:27:06 PM] Command-line execution failed (Return code: 0)
[03:27:06 PM] Deployment cancelled.
[03:27:06 PM] ---- Deployment incomplete ----.
[03:27:06 PM] Failed to package the XCode application.
[03:27:06 PM] Failed to build the iOS application bundle.
[03:27:06 PM] Deployment failed due to one or more errors returned by '/usr/bin/xcrun'. The following is a summary of the returned error(s):
xcrun: Error: could not stat active Xcode path '/Volumes/Xcode/Xcode.app/Contents/Developer'. (No such file or directory)
4

1 回答 1

0

当您尝试部署时,您的文件系统上似乎不存在 /Volumes/Xcode。更重要的是,在 hte“volumes”目录下拥有 Xcode 表明您已将 xcode.dmg 文件作为挂载安装到文件系统上,而不是实际安装在文件系统上。

我犯了一个类似的错误,因为 /Volumes/Xcode 目录有一次在一夜之间消失了。要安装到您的系统上,请将 xcode.dmg 文件拖到应用程序文件夹中。您可以从那里使用 xcode。

将 Xcode 安装到应用程序目录后,仔细检查 JDeveloper iOS 设置“工具 > 首选项 > ADF Mobile > 平台”。确保 SDK 和 xCode 目录正确。

谢谢,

加文 http://pitss.com/us

于 2013-05-08T14:25:39.960 回答