一些软件需要测试,要走itunes的话非常麻烦,其实只需把ipa文件上传到网站上,然后在网页的页面上嵌入超链接。
<a href="itms-services://?action=download-manifest&url=https://www.abc.net/abc.plist" >Phone 在线安装版</a>
然后在目录中新建一个文本,内容如下,稍稍配置下,保存为abc.plist就可以,其实这个是一个标准的XML文件~
<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>http://www.abc.net/app.ipa</string>
</dict>
<dict>
<key>kind</key>
<string>full-size-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<string>http://www.abc.net/app.png</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<string>http://www.abc.net/app128.png</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.shengfang.xcontacts。fixios8</string>
<key>bundle-version</key>
<string>2.14</string>
<key>kind</key>
<string>software</string>
<key>subtitle</key>
<string>APPNAME</string>
<key>title</key>
<string>APPNAME</string>
</dict>
</dict>
</array>
</dict>
</plist>