我想通过无线方式向测试人员分发IPA。
我搜索并找到了一个例子。
Example for Wireless Ad Hoc Distribution
但它不适用于我。它显示对URL无效。
我正在使用http
网址。很少有链接显示它需要https
,
这是真的吗?或者我需要配置别的东西。
请回复。
答案 0 :(得分:2)
您可以使用diawi.com - 您需要使用XCode将您的IPA导出到Ad hoc部署,然后将其上传到diawi。
答案 1 :(得分:1)
只需保存您的ad hoc软件包以进行企业分发,编辑生成的HTML以获取正确的位置 请注意,从iOS 7或8开始(不确定),IPA和PLIST文件必须位于安全网站(https)中。
以下是不使用“为企业保存”的示例:
HTML:
<a href="itms-services://?action=download-manifest&url=https://YourPlistLocation.plist">Install</a>
和plist:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
<key>kind</key>
<string>software-package</string>
<key>url</key>
<string>https://Your IPA Location</string>
</dict>
<dict>
<key>kind</key>
<string>full-size-image</string>
<key>needs-shine</key>
<false/>
<key>url</key>
<string>http://your image location</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>needs-shine</key>
<false/>
<key>url</key>
<string>http:// your icon location</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.your.bundle.id.goes.here</string>
<key>bundle-version</key>
<string>YourVersionHere</string>
<key>kind</key>
<string>software</string>
<key>subtitle</key>
<string>Your subtitle here</string>
<key>title</key>
<string>Your title here</string>
</dict>
</dict>
</array>
</dict>
</plist>
答案 2 :(得分:0)
我遵循此方法,我之前已在此处回答https://stackoverflow.com/a/20353911/1303176
但@ Shai使用diwai.com的回答也是完全可以接受的。