为什么80%的码农都做不了架构师?>>>   

An error occurred uploading to the App Store.  上架到App Store报错

这两天在打包应用上架到App Store时一直报An error occurred uploading to the App Store,而且看不到报错的原因,使用xcode9 和application loader上传,都报错,报错如下:

xcode 上传报错如下:

application loader上传报错如下:

通过application loader,查看日志如下:

Right after upgrading to Xcode 9, I was trying to upload my app and got this error: iTunes Store Operation Failed An error occurred uploading to the iTunes Store. No error was specified. I couldn't find a rumor for what went wrong. So I exported the IPA and used Application Loader (Xcode->Open Developer Tool->Application Loader). This time I got a bunch of very strange messages: An error occurred while starting bundles for the software update process. Transporter will try to continue. Unresolved constraint in bundle com.apple.transporter.asperasupport [5]: Unable to resolve 5.0: missing requirement [5.0] package; (&(package=com.apple.transporter.transport.service)(version>=1.9.6)(version<=1.9.6))[causedby:Unabletoresolve8.0:missingrequirement[8.0] package; (&(package=org.springframework.util.backoff)(version>=4.1.0)(!(version>=5.0.0)))] An error occurred while starting bundles for the software update process. Transporter will try to continue. Unresolved constraint in bundle com.apple.transporter.asperasupport [6]: Unable to resolve 6.0: missing requirement [6.0] package; (&(package=com.apple.transporter.transport.service)(version>=1.9.3)(version<=1.9.3))[causedby:Unabletoresolve9.0:missingrequirement[9.0] package; (&(package=com.apple.itunes.epubtoolkit)(version>=1.0.4)(version<=1.0.4))]Anerroroccurredwhilestartingbundlesforthesoftwareupdateprocess.Transporterwilltrytocontinue.Unresolvedconstraintinbundlecom.apple.transporter.commlink[7]:Unabletoresolve7.0:missingrequirement[7.0] package; (&(package=com.apple.transporter.foundation)(version>=1.9.6)(version<=1.9.6))[causedby:Unabletoresolve8.0:missingrequirement[8.0] package; (&(package=org.springframework.util.backoff)(version>=4.1.0)(!(version>=5.0.0)))] An error occurred while starting bundles for the software update process. Transporter will try to continue. Unresolved constraint in bundle com.apple.transporter.itmstransporter [8]: Unable to resolve 8.0: missing requirement [8.0] package; (&(package=org.springframework.util.backoff)(version>=4.1.0)(!(version>=5.0.0))) An error occurred while starting bundles for the software update process. Transporter will try to continue. Unresolved constraint in bundle com.apple.transporter.itmstransporter [9]: Unable to resolve 9.0: missing requirement [9.0] package; (&(package=com.apple.itunes.epubtoolkit)(version>=1.0.4)(version<=1.0.4))Anerroroccurredwhilestartingbundlesforthesoftwareupdateprocess.Transporterwilltrytocontinue.Unresolvedconstraintinbundlecom.apple.transporter.mediatoolkit[12]:Unabletoresolve12.0:missingrequirement[12.0] package; (&(package=com.apple.itunes.epubtoolkit)(version>=1.0.4)(version<=1.0.4))Anerroroccurredwhilestartingbundlesforthesoftwareupdateprocess.Transporterwilltrytocontinue.Unresolvedconstraintinbundlecom.apple.transporter.softwaresupport[13]:Unabletoresolve13.0:missingrequirement[13.0] package; (&(package=com.apple.transporter.log)(version>=1.9.6)(version<=1.9.6))[causedby:Unabletoresolve8.0:missingrequirement[8.0] package; (&(package=org.springframework.util.backoff)(version>=4.1.0)(!(version>=5.0.0)))] An error occurred while starting bundles for the software update process. Transporter will try to continue. Unresolved constraint in bundle com.apple.transporter.softwaresupport [14]: Unable to resolve 14.0: missing requirement [14.0] package; (&(package=com.apple.jingle.leghorn.fileformat)(version>=1.9.3)(version<=1.9.3))[causedby:Unabletoresolve12.0:missingrequirement[12.0] package; (&(package=com.apple.itunes.epubtoolkit)(version>=1.0.4)(version<=1.0.4))]Anerroroccurredwhilestartingbundlesforthesoftwareupdateprocess.Transporterwilltrytocontinue.Unresolvedconstraintinbundlecom.apple.transporter.updater[15]:Unabletoresolve15.0:missingrequirement[15.0] package; (&(package=com.apple.transporter.log)(version>=1.9.6)(version<=1.9.6))[causedby:Unabletoresolve8.0:missingrequirement[8.0] package; (&(package=org.springframework.util.backoff)(version>=4.1.0)(!(version>=5.0.0)))] An error occurred while starting bundles for the software update process. Transporter will try to continue. Unresolved constraint in bundle com.apple.transporter.updater [16]: Unable to resolve 16.0: missing requirement [16.0] package; (&(package=com.apple.transporter.log)(version>=1.9.3)(version<=1.9.3))[causedby:Unabletoresolve9.0:missingrequirement[9.0] package; (&(package=com.apple.itunes.epubtoolkit)(version>=1.0.4)(version<=1.0.4))]Anerroroccurredwhiletryingtostarttheupdaterservice.Exception'sname:java.lang.NullPointerException, Exception'smessage:serviceReferencesparametercannotbenullAnerroroccurredwhiletryingtostarttransporter.Exception'sname:java.lang.NullPointerException, Exception'smessage:serviceReferencesparametercannotbenull

经过查阅资料,得知,这是因为Mac的Java版本更新导致

解决办法

在终端执行下面三条指令:

1、cd ~
2、mv .itmstransporter/ .old_itmstransporter/
3、"/Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/itms/bin/iTMSTransporter"
终端执行完毕,重现打开xcode打包上传就可以了

注意:

一定要等第三条命令执行完毕才可以哦!

转载于:https://my.oschina.net/llfk/blog/1853660

An error occurred uploading to the App Store.相关推荐

  1. 将App通过XCode上传到AppStore 出现这个错误“An error occurred uploading to the iTunes Store”的解决方法

    将App通过XCode上传到AppStore 出现这个错误"An error occurred uploading to the iTunes Store"的解决方法 参考文章: ...

  2. Xcode打包上传时,最后一步出现An error occurred uploading to the iTunes Store.的解决方法...

    本人最近提交包的时候到最后一部出现以下提示: An error occurred uploading to the iTunes Store. 解决方法: 打开终端,输入以下命令 1.cd ~ 2.m ...

  3. ERROR ITMS-90717: “Invalid App Store Icon. The App Store Icon in the asset catalog in ‘HBuilder.app‘

    前言 注意:web App 应用,原生开发可作为参考. 上传应用到 App Store 时,交付后出现了如下问题: #SEO ERROR ITMS-90717: "Invalid App S ...

  4. App Store Connect Operation Error

    打包ipa包上传AppStore,精彩会遇到各种各样的问题. 1.App Store Connect Operation Error 原因1.电脑内存不足,当时我电脑内存只剩2个多G,清理完内存(最后 ...

  5. ERROR ITMS-90717: Invalid App Store Icon.

    iOS打包上传图片检查阶段出错.导致上传终止. ERROR ITMS-90717: "Invalid App Store Icon. The App Store Icon in the as ...

  6. App 打包提交APP Store途中遇到蛋疼的ERROR ITMS-90035

    背景说明 自己制作了一个类库Framework,其中使用了第三方的库和资源(xxx.bundle),导出Framework时,这些资源也被打包到Framework中,我把这个库引入到项目中进行开发. ...

  7. flash AIR开发的IOS app上传APP Store报错:ERROR ITMS-90086:missing 64-bit support.

    在一次上传APP到  App Store的时候,突然遇到里这个问题,通过网络搜索发现相关的连接很多,所描述主要是XCODE中的设置问题,但是我们是用flash AIR 开发的,除了ANE扩展之外,没有 ...

  8. App Store 审核被拒整理

    整理以前和现在遇到的审核被拒第一:2.2 Details We discovered one or more bugs in your app when reviewed on iPhone runn ...

  9. WWDC21 - App Store Server API 实践总结

    作者:iHTCboy 关于 App Store 用户退款时并没有通知开发者,直到 2020 年 6 月苹果提供了退款通知,但是因为不是 API 方式,导致开发者不一定能收到退款通知.另外像用户充值成功 ...

最新文章

  1. Koa实现下载excel
  2. 高光荣教授逝世:他是新中国首位MIT计算机博士,开创数据流体系结构
  3. ASP.NET Core 中间件之压缩、缓存
  4. jax-ws cxf_走向REST:将Tomcat嵌入Spring和JAX-RS(Apache CXF)
  5. 传感器的特性及性能参数
  6. utf8转gb2312 c语言,UTF-8, Unicode, GB2312格式串转换之C语言版
  7. 2018年AI要怎么“玩”?李飞飞和李开复在达沃斯论坛上给出这几点…
  8. 【劲峰论道时空分析技术-学习笔记】3 时空演化树
  9. 如何提升深度学习的性能
  10. 夜间灯光数据arcgis处理_基于夜间灯光数据与Landsat数据
  11. 多智能体深度强化学习值分解方法总结(1)——VDN/QMIX/QTRAN/Qatten
  12. matlab besselh,关于用matlab求bessel函数零点
  13. 数据结构4:静态链表
  14. YuxuanSys WMS412无线流媒体网关在会议场景中的应用一
  15. Golang内存逃逸
  16. SAP采购申请中数量/单价/价格单位/总价的填写图示
  17. Centos7虚拟机网卡做bond(一)
  18. 名帖78 苏轼 小楷《金刚经》
  19. keil如何添加h文件_被Keil坑了一天!实在太意外了!用Keil的来瞅瞅看
  20. 湿空气性质计算,随笔与学习记录 (5.空气比焓)

热门文章

  1. 计算机工程技术学术活动,第六届电气、电子和计算机工程研究国际学术研讨会将于南京举办!...
  2. 更新win10后连接WIFI时,提示“无法连接到这个网络”
  3. C语言实现-“洗 扑克牌”程序 算法(详解)
  4. 数学——[0,+∞[ 的意思
  5. AURIX Development Studio常用快捷键
  6. SQL server 一行语句实现分页查询!小伙伴们都惊呆了!
  7. 30套免费的响应式 HTML5 CSS3 模板下载
  8. 项目管理:PMP和IPMP哪个更值得考?两个证书的区别在于哪里?
  9. Hbase 的Compact
  10. 实验1 理想介质中的均匀平面波传播