iOS企業版app部署到服務器
.正對ios升級得ios7 以后,plist文件必須放到 https得服務器上了,http不可以用了
部署具體過程
准備文件:plist文件,ipa安裝包,html下載頁面
.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://test.company.com.cn/m/moa/test.ipa</string> // 軟件安裝包,安裝包所在的服務器路徑 </dict> <dict> <key>kind</key> <string>full-size-image</string> <key>needs-shine</key> <false/> <key>url</key> <string>https://test.company.com.cn/m/abc/test-512.png</string> //在itunes上點事的圖片路徑 </dict> <dict> <key>kind</key> <string>display-image</string> <key>needs-shine</key> <false/> <key>url</key> <string>https://test.company.com.cn/m/moa/test-57.png</string> // 安裝應用顯示的圖片 </dict> </array> <key>metadata</key> <dict> <key>update-url</key> <string>https://test.company.com.me/iosLocal.plist</string> // 版本更新URL <key>bundle-identifier</key> <string>com.zte.test</string> // 應用bundle-identifier <key>bundle-version</key> <string>3.0.3</string> // 用用版本號 <key>kind</key> <string>software</string> <key>title</key> <string>ipa包部署測試</string> // 安裝應用顯示的名稱 </dict> </dict> </array> </dict> </plist>
ipa安裝包放入plist指定的software-package安裝包路徑
不通過在AppStore,在IOS設備上直接安裝應用程序的原理
通過itms-services協議,在safari瀏覽器可以直接在ios設備上安裝應用程序。itms-services協議需要一個plist配置文件。
html下載界面
通過瀏覽器訪問下載plist地址提示證書無效,解決方式是通過提供一個下載的html解決,並且下載鏈接需要包含<a href='itms-services://?action=download-manifest&url=https://test.company.com.cn/download/test.plist'>下載</a>, itms-services://?action=download-manifest是固定不變的,url根據環境變化
如果需要二維碼的話,可以根據html下載頁面生成二維碼就ok.
通過iOS代碼下載
[[UIApplication sharedApplication] openURL:@"itms-services://?action=download-manifest&url=https://test.com.cn/Admin/test.plist"];
