ios ipa 和 xcarchive 的区别
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/8591004/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Difference between ipa and xcarchive
提问by Tony
What is the difference between an IPA file and an .xcarchive?
Which one do I have to create to upload an app using Application Loader?
IPA 文件和 .xcarchive 有什么区别?
我必须创建哪一个才能使用 Application Loader 上传应用程序?
Thanks.
谢谢。
回答by 0x8badf00d
Difference between IPA and .xcarchive:
IPA 和 .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.
IPA 是一个压缩的 Payload 文件夹,其中包含 YourApp.app 包。.app 包含您所有的应用程序资源,如图像、plist 文件、压缩笔尖和可执行文件、CodeSigning 资源等。
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.
xcarchive 包含您的应用程序和 dsym 文件。.DSYM 需要去符号化你的崩溃日志。右键单击保存的 .xcarchive 并选择显示包内容以查看其中包含的内容。