我可以在 macOS 10.12 上上传 Xcode 个版本吗
Can I upload Xcode builds on macOS 10.12
我可以在 macOS 10.12 测试版上提交带有 Xcode 7.3.1 的应用程序吗?根据此 ,可以 运行 Xcode 7 与 macOS 10.12 一起使用。
决定亲自试一试。通过 Xcode 和 Application Launcher 导出的两种方法均失败,并出现错误,指出存在 no .app file provided in bundle
。如果您想继续为 iOS 9.
开发,最好远离 macOS 10.12 beta
是的,你可以!但是如果你是要这样做的话,你会发现两个问题。
no .app file provided in bundle
使用 Xcode 7.3.1 构建,然后使用 Xcode 8 [Beta] 上传。这将允许您上传存档。
尝试提交到商店时,您将遇到此错误消息:
New apps and app updates must be built with the public (GM) versions of Xcode 6 or later, OS X, and tvOS SDK. Don't submit apps built with beta software including beta OS X builds.
这是因为您的存档中包含 Sierra 的标记!我昨天刚解决了这个问题。
当您存档您的应用程序时,在管理器中找到您的存档,然后:
- “在取景器中显示”;
- “显示包裹内容”;
- 在“xx.xcarchive”文件中,找到“产品”-“应用程序”-“xx.app”(xx是您的应用程序名称),再次“显示包内容”;
- 最后可以看到有一个名为“Info.plist”的文件,打开它;
- 使用名为“BuildMachineOSBuild”的键编辑值,我只是将其更改为“15F34”(这是“El Capitan 10.11.5”的版本);
之后,您可以使用 Xcode 或 Application Loader 上传此存档,无论您想要什么!
我可以在 macOS 10.12 测试版上提交带有 Xcode 7.3.1 的应用程序吗?根据此
决定亲自试一试。通过 Xcode 和 Application Launcher 导出的两种方法均失败,并出现错误,指出存在 no .app file provided in bundle
。如果您想继续为 iOS 9.
是的,你可以!但是如果你是要这样做的话,你会发现两个问题。
no .app file provided in bundle
使用 Xcode 7.3.1 构建,然后使用 Xcode 8 [Beta] 上传。这将允许您上传存档。
尝试提交到商店时,您将遇到此错误消息:
New apps and app updates must be built with the public (GM) versions of Xcode 6 or later, OS X, and tvOS SDK. Don't submit apps built with beta software including beta OS X builds.
这是因为您的存档中包含 Sierra 的标记!我昨天刚解决了这个问题。
当您存档您的应用程序时,在管理器中找到您的存档,然后:
- “在取景器中显示”;
- “显示包裹内容”;
- 在“xx.xcarchive”文件中,找到“产品”-“应用程序”-“xx.app”(xx是您的应用程序名称),再次“显示包内容”;
- 最后可以看到有一个名为“Info.plist”的文件,打开它;
- 使用名为“BuildMachineOSBuild”的键编辑值,我只是将其更改为“15F34”(这是“El Capitan 10.11.5”的版本);
之后,您可以使用 Xcode 或 Application Loader 上传此存档,无论您想要什么!