iOS企业账号打包发布App到自己服务器上
企业开发者账号打包发布 App 到服务器上的流程
1. App 打包
Xcode
选择Product
-Archive
进行App
打包。
- 选择
Export
导出ipa
安装包。
-
选择
Save for Enterprise Deployment
进行打包。 -
这里要勾选下图这一栏
Include manifest for over-the-air installation.
,勾选以后会生成一个manifest.plist
的文件,之后发布会用到。
[图片上传失败...(image-1129c7-1546825970073)]
- 打包完成后得到两个文件
ipa
和plist
。
[图片上传失败...(image-40e7f7-1546825970073)]
2. 制作 App 安装图标
- 这里需要两个不同尺寸的图标文件,尺寸分别是
57 * 57
和512 * 512
,这个是在安装时显示安装进度时的图标,安装完成后显示的还是App
本身的图标。
[图片上传失败...(image-15dd0b-1546825970073)]
3. 将安装包和图片上传至服务器
4. 修改 manifest.plist 文件
-
根据以下代码,填写相应内容。
-
下面三处分别填写对应服务器上文件地址,且服务器必须支持
HTTPS
协议。
<?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>ipa包URL(必填)</string>
</dict>
<dict>
<key>kind</key>
<string>full-size-image</string>
<key>needs-shine</key>
<false/>
<key>url</key>
<string>下载时大图512*512(非必填)</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>needs-shine</key>
<false/>
<key>url</key>
<string>下载时小图 57*57(非必填)</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>BundleID(必填)</string>
<key>bundle-version</key>
<string>1.0</string>
<key>kind