欢迎您访问 最编程 本站为您分享编程语言代码,编程技术文章!
您现在的位置是: 首页

企业 iOS 内部应用程序分发简介

最编程 2024-05-06 18:16:07
...
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <!-- array of downloads. --> <key>items</key> <array> <dict> <!-- an array of assets to download --> <key>assets</key> <array> <!-- software-package: the ipa to install. --> <dict> <!-- 必填项。 the asset kind. --> <key>kind</key> <string>software-package</string> <!-- 如果 App 文件太大,并且想要在执行错误检验(TCP 通信通常会执行该检验)的基础上确保下载的完整性,可以使用 MD5 键。 --> <!-- optional. md5 every n bytes. will restart a chunk if md5 fails. --> <key>md5-size</key> <integer>10485760</integer> <!-- optional. array of md5 hashes for each "md5-size" sized chunk. --> <key>md5s</key> <array> <string>41fa64bb7a7cae5a46bfb45821ac8bba</string> <string>51fa64bb7a7cae5a46bfb45821ac8bba</string> </array> <!-- 必填项。App (.ipa) 文件的完全限定 HTTPS URL,经验证,这里可以支持http --> <key>url</key> <string>https://www.example.com/apps/foo.ipa</string> </dict> <!-- 57 x 57 像素的 PNG 图像,在下载和安装过程中显示。指定图像的完全限定 URL。经验证非必填项,但是官方说是必填项,而且有的话下载安装过程体验好些,所以最好有。 --> <dict> <key>kind</key> <string>display-image</string> <!-- optional. indicates if icon needs shine effect applied. --> <key>needs-shine</key> <true/> <key>url</key> <string>https://www.example.com/image.57x57.png</string> </dict> <!-- 512 x 512 像素的 PNG 图像,表示 App Store 中相应的 App。经验证非必填项,但是官方说是必填项,酌情处理就好。 --> <dict> <key>kind</key> <string>full-size-image</string> <!-- optional. one md5 hash for the entire file. --> <key>md5</key> <string>61fa64bb7a7cae5a46bfb45821ac8bba</string> <key>needs-shine</key> <true/> <key>url</key><string>https://www.example.com/image.512x512.jpg</string> </dict> </array> <key>metadata</key> <dict> <!-- 必填项。App 的包标识符,与 Xcode 项目中指定的完全一样 --> <key>bundle-identifier</key> <string>com.example.fooapp</string> <!-- 必填项。App 的包版本。跟下载包保持一致 --> <key>bundle-version</key> <string>1.0</string> <!-- required. the download kind. --> <key>kind</key> <string>software</string> <!-- optional. displayed during download; typically company name --> <key>subtitle</key> <string>Apple</string> <!-- 必填项。下载和安装过程中显示的 App 的名称 --> <key>title</key> <string>Example Corporate App</string> </dict> </dict> </array> </dict> </plist>

推荐阅读