如何为 Xcode 3.2.4 配置 Adhoc?
它与旧版本显示的不一样,它只取消选中
此版本中的 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>
it not show the same as old version it only uncheck get-task-allow
in this version show like this how i config it?
<?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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不必再创建新的权利文件。如果您的测试人员使用 iOS4 或更高版本,请尝试以下操作:
http: //jeffreysambells.com/posts/2010/06/22/ios-wireless-app-distribution/
您只需为您的构建选择正确的配置文件即可。这使您可以与测试人员/客户共享您的应用程序,而无需向他们发送实际文件,而只需在手机上的 Safari 中打开一个 URL 并通过该 URL 进行安装。 (在配置中仍然需要他们的 UDID)。
至少,这就是我所要做的。 :)
You don't have to create a new entitlements-file anymore. If your testers have iOS4 or later, try this:
http://jeffreysambells.com/posts/2010/06/22/ios-wireless-app-distribution/
You just have to choose the correct provisioning-profile for your build and go. This allows you to share your apps with testers/clients without sending them the actual files, but only a URL to open in Safari on their phone and install through there. (Still requires their UDID in the provisioning tho).
At least, that's all I had to do. :)