xCode6如何使用.plist导出应用程序以进行企业分发?

时间:2014-10-10 19:38:26

标签: ios xcode6 ipa enterprise-distribution

我正在尝试将应用上传到一个网站,该网站需要.plist和应用的ipa。 以下屏幕截图来自网站。

我注意到xCode6已删除了复选框,以便从“ad hoc”和“enterprise”分发选项中保存企业分发。我正在使用299美元/年企业计划的个人资料签署应用程序。我仍然没有下载。 如何使用xCode6分发应用以获取企业plist选项?

这是我期望和在xCode5中看到的(xCode6中没有这样的复选框) enter image description here

1 个答案:

答案 0 :(得分:3)

这不是使用Xcode,但作为后备,你可以手动/编程编辑plist文件。我这样做是因为我的持续集成服务器分发构建,所以我不能使用Xcode的GUI来制作plist文件。

以下是企业分发.plist的样子(从this gist复制而来):

<?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>http://dl.dropbox.com/u/1001/myawesomeapp.ipa</string>
                </dict>
            </array>
            <key>metadata</key>
            <dict>
                <key>bundle-identifier</key>
                <string>com.company.application</string>
                <key>bundle-version</key>
                <string>0.0.16</string>
                <key>kind</key>
                <string>software</string>
                <key>title</key>
                <string>My Awesome App</string>
            </dict>
        </dict>
    </array>
</dict>
</plist>