搭建步驟html
.ipa
文件,能夠是企業級簽名
,也能夠是dev簽名包
manifest.plist
文件,plist
文件和ipa
文件必須放在支持https://
服務器上,並且必須是公網ssl
,自簽名及免費的https
不可用(本文以GitHub
爲例)html
頁面manifest.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://raw.githubusercontent.com/***/testIPA/master/Unity-iPhone.ipa</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.*****EN.****</string>
<key>bundle-version</key>
<string>0.1</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>應用名稱</string>
</dict>
</dict>
</array>
</dict>
</plist>
複製代碼
.ipa
文件,manifest.plist
文件以及html
下載頁面,上傳到GitHub
上(支持https://
服務器上)
manifest.plist
文件,將獲取的下載路徑,填寫到manifest.plist
文件中對應位置html
簡易下載頁面,下載連接必須是這樣的格式itms-services://?action=download-manifest&url=一個plist文件的地址
<!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=https://raw.githubusercontent.com/***/testIPA/master/DownloadPlist.plist">點擊安裝</a>
</font>
</p>
</body>
</html>
複製代碼
github
上預覽html
網頁效果github
上demo
的html
文件連接複製到,打開下面網址後出現的輸入欄中,點擊按鈕便可。http://htmlpreview.github.io/
複製代碼
GitHub & BitBucket HTML Preview 2. 在HTML
文件的地址前面加上htmlpreview.github.io/?
git
htmlpreview.github.io/?文件地址
複製代碼
github
上demo
的倉庫頁面,點擊setting
按鈕,找到GitHub Pages
版塊,選擇Source
爲master branch
,而後保存(或者在Theme Chooser
處,點擊Change theme
,進入頁面後選擇主題保存,這樣也能夠)頁面會出現一個新連接,在連接後面加上demo
的HTML
文件名,便可跳轉到demo
顯示的頁面Git LFS
的客戶端,而後在將要push
的倉庫裏從新打開一個bash
命令行:LFS
:git lfs install
push
的大文件的文件或指定文件類型git lfs track "*.pdf"
固然還能夠直接編輯.gitattributes
文件add, commit, push
流程就能夠了 注:sourcetree
集成的有LFS
使用也很是方便POST Git-receive-pack (chunked)
SourceTree
右上角的,設置 -> 高級 -> 編輯配置文件
,來打開配置文件,在配置文件中添加以下配置,最後保存,從新嘗試推送到倉庫就能夠了[http]
postBuffer = 524288000
複製代碼
附:個人博客地址github