使用 xcode 8 上传后,应用程序未显示在 activity 选项卡中

Apps doesn't show in activity tab after uploading using xcode 8

我最近将我的 Xcode 更新为 Xcode 8(非测试版),我正在尝试上传一个针对 IOS 8.2 的应用程序。我 运行 "upload to App Store" 到 Xcode 并且它说 "submit successfully"。但是,当我在 24 小时后检查 Activity 选项卡时,构建仍然不存在。我尝试再次上传,它给了我一个错误,说二进制代码已经存在。有谁知道问题出在哪里?

非常感谢您能提供的任何帮助!

I tried to upload again and it gave me an error saying that the binary code is already exists.

当您再次上传新版本时,请确保 版本号 递增。

when I check in the Activity tab after 24 hrs, the build is still not there.

首先检查您的邮件(与 Apple 帐户相关联)以获取构建拒绝的详细信息。由于您使用的是 Xcode 8, iOS 10 SDK,很可能您缺少强制使用说明密钥。 iOS 10 Apple 正在扩大隐私控制范围,在访问联系电话、照片、位置、日历等用户私人数据之前,您需要征得使用许可。您必须在 Info.plist 文件中声明对任何私有数据的访问权限。 Reference for more details here.

可能有很多原因。我遇到了同样的问题,我的解决方案是:

查看Info.plist中的信息,日历、相机、照片库或构建代码或版本代码等隐私说明是受影响的因素。

或者其他问题可能在 xcode - 9.1

  • 如果您没有在 1024 * 1024 的资产中添加合适的应用图标。
  • Appicon 不能是透明的,也不能包含 alpha 通道。

如有疑问,请进一步询问