gpt4 book ai didi

iphone - 无法将应用程序上传到 iTunes Connect

转载 作者:行者123 更新时间:2023-11-29 03:53:23 25 4
gpt4 key购买 nike

我一直在尝试将我的应用程序提交到 iTunes connect,但收到错误上传到 iTunes 商店时发生错误。我已经使用 Xcode 和应用程序加载器尝试过此操作。

我检查了系统日志,发现了以下错误:

Application Loader[820]:  Error:
/Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/MacOS/itms/bin/iTMSTransporter: line 14: **awk: command not found**
/Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/MacOS/itms/bin/iTMSTransporter: line 18: ../share/iTMSTransporter.woa/**iTMSTransporter: No such file or directory**
May 29 11:09:38 Ahmad-MacBook.local Application Loader[820]: Out:*

这是我尝试解决此问题的方法:

  • 一些网站提示问题出在 Java 上,所以我尝试回滚到 Java 1.6 和 Java 1.5,但没有成功,我还从 Oracle 网站安装了 Java 1.7,但也没有成功;
  • 删除了 Xcode 并重新安装,但没有成功。

有没有人解决这个问题?

我运行的是 OSX 10.8.3。当前的 Java 版本是:

java version "1.6.0_45"
Java(TM) SE Runtime Environment (build 1.6.0_45-b06-451-11M4406)
Java HotSpot(TM) 64-Bit Server VM (build 20.45-b01-451, mixed mode)

最佳答案

我遇到了完全相同的问题,并且能够通过稍微调整文件来修复它

/Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/MacOS/itms/bin/iTMSTransporter

将 awk 的路径更改为绝对路径(并且我还取消注释了脚本路径的回显,这可能不是必需的)。这是我更改的文件:

#!/bin/sh

# if the user has the run script in their PATH
# then we can get the path to the script from
# 'which'. otherwise, we have to get the path
# from $0
if [ "$0" = "iTMSTransporter" ] ; then
SCRIPT_PATH=`which iTMSTransporter`
else
SCRIPT_PATH=$0
fi

# get the script's directory
SCRIPT_DIR=`echo $SCRIPT_PATH | /usr/bin/awk -F"/" '{print substr($0,1,length($0)-length($NF))}'`

# call the transporter relative to the script's directory
echo Calling: ${SCRIPT_DIR}../share/iTMSTransporter.woa/iTMSTransporter "$@"
"${SCRIPT_DIR}../share/iTMSTransporter.woa/iTMSTransporter" "$@"

我猜这种行为是由不正确的类路径设置引起的,但我无法解决。修复脚本后,我设法通过 XCode Organizer 上传我的应用程序。

祝你好运!

关于iphone - 无法将应用程序上传到 iTunes Connect,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16808792/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com