快速鏈接
蘋果開發(fā)者賬號鏈接
網址: https://developer.apple.com/account
蘋果應用上架鏈接
網址: https://appstoreconnect.apple.com/
應用證書文件及打包
參考教程: 最新uniapp打包IOS詳細步驟(2022)
證書在線制作工具
網址: https://app.121xuexi.com/
iPhone 直接安裝IPA包
iPhone直接安裝IPA 可以使用
愛思助手
->應用游戲
->導入安裝
正題
通過瀏覽器下載安裝IPA, 此方法適用于 企業(yè)開發(fā)者賬戶
, 個人開發(fā)者賬戶只有添加設備UUID
才能使用文章來源:http://www.zghlxwxcb.cn/news/detail-719727.html
參考文章: 蘋果App,不用上傳蘋果商店,也能讓其他人安裝文章來源地址http://www.zghlxwxcb.cn/news/detail-719727.html
需要的材料
-
應用圖標
(正常圖標和最小圖標, 用一個也可以, http / https 可以訪問) -
BundleID
(包名) -
IPA包
(http / https 可以訪問) -
plist文件
(http / https 可以訪問)
plist文件編寫, 保存為 ceshi.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>
<!-- http或者https鏈接的ipa文件地址 -->
<string>https://xxxxxxx.com/ceshi.ipa</string>
</dict>
<dict>
<key>kind</key>
<string>full-size-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<!-- http或者https鏈接的應用圖標 正常尺寸 (都用一個也行, 分辨率沒強制要求)-->
<string>https://xxxxxxx.com/icon.png</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>needs-shine</key>
<true/>
<key>url</key>
<!-- http或者https鏈接的應用圖標,最小尺寸 (都用一個也行, 分辨率沒強制要求) -->
<string>https://xxxxxxx.com/icon.png</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<!-- BundleID,應用的包名 -->
<string>abc.com</string>
<key>bundle-version</key>
<!-- 版本號 -->
<string>1.0</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<!-- 安裝app時的提示名稱 -->
<string>測試應用</string>
</dict>
</dict>
</array>
</dict>
</plist>
網頁點擊安裝應用
<button onclick="iosDown()"></button>
function iosDown(){
window.location.href='itms-services:///?action=download-manifest&url=https://xxxxxxx.com/ceshi.plist';
}
將上方的信息替換為自己的即可, 注意: itms-services:///
此處為3個 /
.
只能在 Safari
瀏覽器才能安裝, 其他瀏覽器無響應, 可以判斷一下瀏覽器, 提示用 Safari
打開即可
到了這里,關于蘋果IOS安裝IPA, plist形式 Safari 瀏覽器點擊安裝的文章就介紹完了。如果您還想了解更多內容,請在右上角搜索TOY模板網以前的文章或繼續(xù)瀏覽下面的相關文章,希望大家以后多多支持TOY模板網!