如何上传 Delphi IPA到苹果应用商店

8nuwlpux  于 2023-05-06  发布在  其他
关注(0)|答案(1)|浏览(166)

如何将我的iOS IPA文件(由 Delphi 11.3制作)上传到Apple应用程序商店?
我找不到应用程序上传器,TestFlight似乎没有此功能。

jk9hmnmh

jk9hmnmh1#

除了Dave Nottage使用Transporter的答案外,您还可以使用xcrun命令行实用程序将构建上传到appstoreconnect。

xcrun altool --upload-app --type ios --file location/to/App.ipa --username username --password app-password

在您想要从脚本上传构建版本或您无权访问Transporter应用程序的情况下,它可能非常有用。
对于--username标志,我使用我的Apple ID。
对于--password标志,我在https://appleid.apple.com/account/manage设置了一个应用程序密码并使用它。

相关问题