如何为Xcode 3.2.4配置Adhoc?

时间:2010-09-02 11:33:17

标签: xcode adhoc entitlements

它与旧版本不同,只取消选中get-task-allow

在这个版本中显示如何配置它?

<?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>application-identifier</key>
    <string>$(AppIdentifierPrefix)$(CFBundleIdentifier)</string>
    <key>keychain-access-groups</key>
    <array>
        <string>$(AppIdentifierPrefix)$(CFBundleIdentifier)</string>
    </array>
</dict>
</plist>

1 个答案:

答案 0 :(得分:0)

您不必再创建新的权利文件了。如果您的测试人员使用iOS4或更高版本,请尝试以下操作:

http://jeffreysambells.com/posts/2010/06/22/ios-wireless-app-distribution/

您只需为构建选择正确的配置文件即可。这允许您与测试人员/客户端共享您的应用程序,而无需向他们发送实际文件,但只允许在手机上通过Safari打开并在那里安装的URL。 (在配置中仍然需要他们的UDID)。

至少,这就是我必须做的一切。 :)