博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
swift交付应用的坑
阅读量:5783 次
发布时间:2019-06-18

本文共 1333 字,大约阅读时间需要 4 分钟。

hot3.png

1.ERROR ITMS-90086:"missing 64-bit support. beginning on february 1, 2015, new iOS apps submitted to the app store must be include 64-bit support and be built with the ios8 SDK......

解决:Valid Architectures :加上arm64

2.

Invalid Swift Support - The SwiftSupport folder is missing. Rebuild your app using the current public (GM) version of Xcode and resubmit it.

解决:swift上架不支持动态库

3.Your app declares support for location in the UIBackgroundModes key in your Info.plist file but does not have any features that require persistent location. Apps that declare support for location in the UIBackgroundModes key in your Info.plist file must have features that require persistent location.

解决:需要在info.plist文件中,配置定位服务的原因

NSLocationAlwaysUsageDescription:总是开启定位功能

NSLocationWhenUsageDescription:只有在使用时才开启定位功能

 

4.上架后,下载应用的名字和AppStore中名字不一样

解决:在buildSetting中搜索productName设置为想要的名字,在info.plist文件中设置bundlename为$(PRODUCT_NAME)就可以了

5、AppStore中应用名称下边的开发者信息修改

解决:在iTunesConnect中点击最下边的contactus->(1.Please choose from the following topics:  后边可选框)Contracts and Legal -> (2.Please choose from the following topics:  后边可选框)Team Information Update->(3.Please choose from the following topics:  后边可选框)Company Display and Seller Information Update->点击下边的contact us->出现表格,填写,最下边使用英文,描述问题,需要做哪些修改即可。提交后,几天后苹果那边会有邮件回复。

 

转载于:https://my.oschina.net/u/2532095/blog/736232

你可能感兴趣的文章
loadrunner 的Administration Page里面设置
查看>>
程序员喜欢怎样的职位描述?(转)
查看>>
威胁快报|ProtonMiner挖矿蠕虫扩大攻击面,加速传播
查看>>
<<深入PHP面向对象、模式与实践>>读书笔记:面向对象设计和过程式编程
查看>>
架构的“一小步”,业务的一大步
查看>>
聊聊flink JobManager的heap大小设置
查看>>
PAT A1116
查看>>
App上架/更新怕被拒? iOS过审“避雷秘籍”请查收
查看>>
CentOS 7 防火墙操作
查看>>
关于 top 工具的 6 个替代方案
查看>>
程序员最讨厌的9句话,你可有补充?
查看>>
PAT A1037
查看>>
DevOps自动化工具集合
查看>>
淘宝放大镜的两种实现方法JS
查看>>
浅谈RPC
查看>>
MariaDB强制修改root密码
查看>>
where与having的区别
查看>>
设计模式(十)装饰器模式
查看>>
FB 宕机,Telegram 用户疯涨,P**hub 流量猛增
查看>>
python之time和datetime模块
查看>>