你将如何能够通过Xcode以外的方式将*.app上传到App Store?

huangapple go评论71阅读模式
英文:

How will I able to upload *.app to Appstore not via Xcode?

问题

我有一个使用Go语言创建的iOS应用程序,我将其编译为.app文件。有人可以告诉我应该如何做以下事情吗:

  1. 将应用程序加载到我的iPhone上
  2. 将应用程序加载到iTunes Connect上(我通过Xcode加载了另一个应用程序,但这里没有Objective-C或Swift代码来执行此操作)

附注:我有有效的开发者帐户,可以创建任何所需的证书。版本:XCode 7.2,iOS 9.2

非常感谢您的帮助。

英文:

I have application for iOS created on Go language, I compiled it to .app file. Can anyone tell me what should I do to:

  1. Load application to my iPhone
  2. Load application to iTunes connect (I loaded another via Xcode, but there are no objective c or swift code here to do so)

PS: I have valid developer account, able to create any certificates that will need. Versions: XCode 7.2, iOS 9.2

Thanks a lot for your help.

答案1

得分: 2

对于提交部分,有一个名为Application Loader的苹果工具。它是Xcode的一部分,但我认为仍然可以单独下载。它可以将应用程序传送到App Store,而无需使用Xcode的Organiser界面。

您需要将您的应用程序交付为.ipa文件。如果您的.app文件已正确签名并包含有效的.mobileprovision文件(这是另一个问题),您只需要创建一个名为"Payload"的新文件夹,将您的.app文件复制到其中。然后,您可以将.zip文件重命名为.ipa,并使用Application Loader上传它。

英文:

For submission part there is Apple tool called Application Loader. It is a part of Xcode, but I think can still be downloaded separately. It can deliver app to App Store without having to use Xcode Organiser interface.

You need to deliver your app as .ipa file. If your .app is properly signed and contains a valid .mobileprovision (which is a different question), all you need to do is to create a new folder named "Payload", put copy your .app into ito it. Then you can rename the .zip file to .ipa and upload it using Application loader.

huangapple
  • 本文由 发表于 2016年1月17日 19:25:08
  • 转载请务必保留本文链接:https://go.coder-hub.com/34837776.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定