1. 程式人生 > >問:如何打包.ipa,然後用Application Loader提交到app store?

問:如何打包.ipa,然後用Application Loader提交到app store?

【問】:如何打包.ipa,然後用Application Loader提交到app store?

【答】:

參考文章:

(1)《How to convert .xcarchive to .ipa for client to submit app to app store using Application Loader》

stackoverflow.com/questions/14934808/how-to-convert-xcarchive-to-ipa-for-client-to-submit-app-to-app-store-using-ap

(2)《 How to Create the Upload File for Application Loader?》

stackoverflow.com/questions/5937660/how-to-create-the-upload-file-for-application-loader 

下面是原文中的一個答案:

Launch Xcode 5 (Product -> Archive to build the archive)
Goto Window -> Organizer 
Select the latest archive and click the Distribute button
Select Save for enterprise or ad-hoc deployment
Select your provisioning profile and then Export
Choose a location to save the .ipa file
This is basically it. Hope it will help any one looking for the answer.

(3)《App Store SubmissionTutorial》(《App Store 提交指南》蘋果官方文件,其中詳細介紹瞭如何建立.ipa檔案。)

https://developer.apple.com/legacy/library/documentation/ToolsLanguages/Conceptual/YourFirstAppStoreSubmission/YourFirstAppStoreSubmission.pdf 

【問】:IPA 和.xcarchive檔案有什麼不同?

【答】:

參考資料:(原文來自這裡

Difference between IPA and .xcarchive:

IPA is a zipped up Payload folder which has YourApp.app bundle. .app contains all your application resources like images, plist files, compressed nibs and the executable, CodeSigning resources,etc.

xcarchive contains your app and dsym files. .DSYM is required to desymbolicate your crash logs. Right click on saved .xcarchive and select show package contents to see what it contains.