Xcode 6 Save for Enterprise Deployment不再为ipa创建plist了吗? [英] Xcode 6 Save for Enterprise Deployment does not create plist for ipa anymore?

查看:91
本文介绍了Xcode 6 Save for Enterprise Deployment不再为ipa创建plist了吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Xcode 5帮助创建了企业ipa的plist描述符。
Xcode 6(6A313)仅创建ipa。
这是一个错误还是故意改变?如果是这样 - 退后一步的原因是什么?

Xcode 5 helped in creating plist descriptor for enterprise ipa. Xcode 6 (6A313) creates ipa only. Is this a bug or intentional change? If so - what would be the reason for taking a step back?

如果我之前没有使用Xcode 5生成plist,我需要自己手动创建它。
你知道在这个过程中有用的任何自动工具吗?

If I did not have previously generated plist using Xcode 5, I would need to crete it manually myself. Do you know of any automatic tool which would help in the process?

推荐答案

我遇到了同样的问题。需要在昨晚进行建设。我最后只是重复使用旧的plist并更新它。这是一个模板:

I'm having the same problem. Needed to put a build out last night. I ended up just reusing an old plist and updating it. Here's a template:

<?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>[INSERT URL HERE]</string>
                                </dict>
                        </array>
                        <key>metadata</key>
                        <dict>
                                <key>bundle-identifier</key>
                                <string>[INSERT BUNDLE ID HERE]</string>
                                <key>bundle-version</key>
                                <string>[INSERT VERSION HERE]</string>
                                <key>kind</key>
                                <string>software</string>
                                <key>title</key>
                                <string>[INSERT APP TITLE HERE]</string>
                        </dict>
                </dict>
        </array>
</dict>
</plist>

这篇关于Xcode 6 Save for Enterprise Deployment不再为ipa创建plist了吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆