美文网首页签名
iOS企业开发plist安装包实现

iOS企业开发plist安装包实现

作者: iOS_Developer | 来源:发表于2018-07-05 10:12 被阅读43次

在使用MACBOOK导出ipa的时候,我们得到ipa的同时,还得到一份plist文件

看到我们导出的plist,需要注意的地方有两个已经用中文标注。

一个是URL,一个是bundle-identifier

<?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下载地址(比如:http://127.0.0.1/app.ipa)</string>
                </dict>
            </array>
            <key>metadata</key>
            <dict>
                <key>bundle-identifier</key>
    <string>请填上你的开发者证书用户名即bundleId</string>
                <key>bundle-version</key>
                <string>1.0</string>
                <key>kind</key>
                <string>software</string>
                <key>title</key>
                <string>请填上标题即应用名称</string>
            </dict>
        </dict>
    </array>
</dict>
</plist>

这样,可供下载的plist文件就生成了

相关文章

网友评论

    本文标题:iOS企业开发plist安装包实现

    本文链接:https://www.haomeiwen.com/subject/nqbuuftx.html