xcode ios中ad hoc分发和应用商店分发有什么区别
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/8354121/
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
What is the difference between ad hoc distribution and app store distribution in ios
提问by John
I am new in Iphone development.I have a little idea about app_store distribution.My questions are
我是 Iphone 开发的新手。我对 app_store 分布有一点了解。我的问题是
1) what is the need of ad hoc distribution in ios application distribution?
1) ios应用分发需要什么ad hoc分发?
2)Is any other license need for ad hoc distribution from Apple?
2) Apple 的临时分发是否需要任何其他许可证?
if anybody know ,please help me. Thanks in advance.
如果有人知道,请帮助我。提前致谢。
回答by Vin
Ad-Hoc Distribution:Distribution builds of an app, which can be installed on 100 devices designated by the developer on his provisioning portal. The distribution mechanism can be websites, mails or OTA. These type of builds are generally for beta testing or demos.
Ad-Hoc Distribution:应用程序的分发版本,可以安装在开发人员在其配置门户上指定的 100 台设备上。分发机制可以是网站、邮件或OTA。这些类型的构建通常用于 beta 测试或演示。
App-store Distribution:Distribution builds that are intended for general public(for sale). The distribution mechanism is App store only.
应用商店分发:面向公众(出售)的分发版本。分发机制仅限应用商店。
回答by beryllium
Ad Hoc distribution allows you to share your application with up to 100 iPhone, iPad or iPod touch users, and to distribute your application through email or by posting it to a web site or server.
Ad Hoc 分发允许您与最多 100 个 iPhone、iPad 或 iPod touch 用户共享您的应用程序,并通过电子邮件或将其发布到网站或服务器来分发您的应用程序。
App Store provisioning profiles do not allow for a distribution built application to be installed on an Apple device. To install your distribution ready application on a device, you must create an Ad Hoc provisioning profile.
App Store 配置文件不允许在 Apple 设备上安装分发构建的应用程序。要在设备上安装您的分发就绪应用程序,您必须创建一个 Ad Hoc 配置文件。
App Store distribution allows you to post your application in Apple Store.
App Store 分发允许您在 Apple Store 中发布您的应用程序。