配置文件中的 UDID?
给定一个配置文件,有人知道如何确定该配置文件中的 UDID 吗?
Given a provisioning profile, does anyone know how to determine what UDIDs are in that profile?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
要查看哪些 iOS 设备 UDID 与您的配置文件关联,请使用终端命令:
(将 .mobileprovision 文件从 Finder 拖放到终端窗口以填写文件路径)
在命令结果中查找与关联的设备 UDID 的 ProvisionedDevices 部分个人资料,例如:
To see which iOS device UDID's are associated to your provisioning profile, use the Terminal command:
(drag and drop the .mobileprovision file from Finder to the Terminal window to fill in the file path)
Within the command results look for the ProvisionedDevices section for the device UDIDs associated to the profile, such as:
在文本编辑器中将其打开。您应该能够看到 UDID 列表。
它们出现在“配置的设备”键下。
Open it up in a text editor. You should be able to see the list of UDID's.
They appear under the key "Provisioned Devices".
对接下来的自动插件感到抱歉 - 我是上述插件的作者,但觉得这是这个问题的合适答案。
我只是为了这个需要编写了一个 QuickLook 插件。
它为您提供配置文件中所有 UDID 的排序列表。当它了解有关特定 UDID 的更多信息时,它将允许您显示弹出窗口以获取有关设备的更多信息。
这也是访问有关配置文件的其他有用信息的简单方法:创建和到期日期、应用程序 ID、配置文件名称...
下载它 此处。
Sorry for the auto-plug that follows - I'm the author of the mentionned plugin, but felt it was an appropriate answer to this question.
I wrote a QuickLook plugin just for this need.
It gives you a sorted list of all the UDIDs in the profile. When it knows more about a specific UDID, it will allow you to display a pop-up to get more information about the device.
It is also an easy way to get access to other useful informations about the profile: creation and expiration date, App ID, profile name...
Download it here.
我使用的另一个 QuickLook 插件是 ProvisionQL。
https://github.com/ealeksandrov/ProvisionQL
它提供了用于配置配置文件的 QuickLook 功能!
查看更多屏幕截图以了解其工作原理:https://github.com/ealeksandrov/ProvisionQL/blob/master/screenshots.md
Another QuickLook plug-in I use is ProvisionQL.
https://github.com/ealeksandrov/ProvisionQL
It provides the QuickLook feature for provisioning profiles!
Check out more screenshots for how it work: https://github.com/ealeksandrov/ProvisionQL/blob/master/screenshots.md