OTA (Over The Air)是蘋果很早就支持的功能藏畅,目的是讓企業(yè)用戶脫離Appstore通過網(wǎng)頁來發(fā)布app,想要實現(xiàn)OTA發(fā)布,首頁要購買一個企業(yè)證書,價格是$299/年允趟。申請企業(yè)證書:https://developer.apple.com/programs/enterprise/
發(fā)布流程如下:
1,使用Xcode生成ipa安裝包
- 首先在TARGETS的General配置中鸦致,將Bundle Identifier設置為該企業(yè)帳號對應的App ID潮剪,如com.baidu.XXX;
- 然后在Build Setting的Code signing一欄分唾,選擇企業(yè)帳號對應的Distribution證書抗碰;
- 接下來選擇Xcode->Product->Archive,即可開始打包了鳍寂。
- 生成xcarchive改含,接下來Export時情龄,需要選擇Save for Enterprise Deployment一項迄汛,點擊next即可導出ipa文件了。
2骤视,將ipa鞍爱、plist、html文件专酗、icon上傳至新建的根目錄
首先新建一個空白的github倉庫睹逃,將打包好的ipa文件及空白install.plist、install.html文件及app Icon圖片上傳至倉庫根目錄。這樣就有了每個文件在github上的鏈接地址沉填。
然后配置install.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://***/XXX.ipa</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<string>https://***/Icon57.png</string>
</dict>
<dict>
<key>kind</key>
<string>full-size-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<string>https://***/Icon57.png</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.baidu.***</string>
<key>bundle-version</key>
<string>1.0.0</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>Hiclub</string>
</dict>
</dict>
</array>
</dict>
</plist>
pist文件中需要注意:
- software-package對應的鏈接即github上ipa文件所在地址
- display-image為安裝過程中iphone桌面上顯示的圖標
- bundle-identifier為打包ipa中所配置的id
- bundle-version為當前app版本
3疗隶,配置install.html文件,用來生成安裝頁
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Install</title>
</head>
<body>
<p align=center>
<font size="10">
<a style="color:#69DEDA" href="itms-services://?action=download-manifest&url=***/install.plist">點擊安裝</a>
</font>
</p>
</body>
</html>
install.plist即為該文件在github上的鏈接地址翼闹,然后將全部文件push到github斑鼻。
4,生成在線安裝鏈接
由于github上的安裝頁面install.html無法直接預覽猎荠,通過一個非常使用的小工具htmlpreview坚弱,將install.html原鏈接轉換為可預覽的鏈接,如上圖所示关摇。最后用iPhone Safari 打開新生成的鏈接就可以安裝了荒叶。