我了解其他第三方,但我正在尝试使用Dropbox进行Ad Hoc OTA。 99%的可用材料已过期,适用于iOS4和Xcode 5之前的
在筛选之后,所有这些对我来说都是有用的:我可以从Dropbox下载另一台设备,但只能部分下载。但是这个过程会不断重新开始,并且永远不会完成。
// an email link to ..
// a regular html file on my website using the following:
<a href="https://www.dropbox.com/s/(my_DB_link)/ipa.html">Tap Here</a>
// the .html file above points to another file on DropBox's servers,
// which is another .html file pointing to the .plist manifest
<a href="itms-services://?action=download-manifest&url=https://dl.dropboxusercontent.com/s/(my_plist_link)/myApp.plist">Your Beta, Sir</a>
// line 14 in the .plist points back to my website
<string>http://www.example.com.au/apps/myApp.ipa</string>
我正在使用Xcode生成的.plist,以下所有地方都建议编辑他们的示例,但到目前为止没有人能够得到我 我尝试从电子邮件链接到我的.plist,指向dropbox中的my.ipa。不。不是一百万年。
自2013年10月以来,是否有人从头开始成功完成了这项工作?
这是我的问题,但有些背景说明: 花式舞蹈的原因是我了解到iOS7希望.ipa能够在HTTPS下提供服务:我不想花一周时间学习网络编码。所以我使用Dropbox来欺骗itms-services以获得可靠的证书。
是设备在我的配置文件上,以及它的分发配置文件,而不是开发配置文件
2小时有这个链接没有产生解决方案,但值得其他可能出错的事情 wireless iphone app distribution - problem with itms-services protocol
对于新手来说,这里有一些不浪费时间在这个主题上的链接,还有其他网站,但有些内容 - 每一个。 (他们把我的笔记本电池耗尽了近两倍,我希望我的时间有些价值)。
http://shinydevelopment.com/blog/over-the-air-ios-provisioning-and-distribution/
http://iosdevelopertips.com/xcode/distribute-ad-hoc-applications-over-the-air-ota.html
http://aaronparecki.com/articles/2011/01/21/1/how-to-distribute-your-ios-apps-over-the-air
http://dr-palaniraja.blogspot.com.au/2011/06/distribute-your-iphoneipad-adhoc-builds.html
http://www.techaheadcorp.com/blog/iphone/wireless-ad-hoc-distribution.php
http://www.buzztouch.com/forum/thread.php?tid=C170BC9A655DAC18CF67787¤tPage=1
http://3qilabs.com/how-to-ad-hoc-distribute-your-ios-app-via-a-website-and-ota/
答案 0 :(得分:0)
我认为这可以更好地回答我自己的问题,而不是评论或编辑: Apple以某种方式弃用了UDID,beta测试人员使用了一个名为UDID TOOL的应用程序。 (他是想要避免iTunes安装的PC用户。同意)
我注意到他的UDID以fffffff开头,就像我妻子使用UDID TOOL时一样。将其与会员中心的授权设备列表进行比较,她的手机不会以类似的方式开头
因此,直接放弃的第一个问题是找到一种正确检索其UDID的方法。 我在Daiwi的推文中找到了这个。