xcode iPhone 配置实用程序 - 在配置文件中显示所有设备

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/5738636/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-14 20:52:11  来源:igfitidea点击:

iPhone Config Utility - show all devices in a provisioning profile

iphonexcode

提问by Rayfleck

In both XCode and the iPhone Configuration Utility, there is a Provisioning Profiles item that shows at most 2 devices in a provisioning profile. It also says "8 other devices".

在 XCode 和 iPhone 配置实用程序中,都有一个 Provisioning Profiles 项目,在一个配置文件中最多显示 2 个设备。它还说“8 个其他设备”。

  • What are those devices?
  • 那些设备是什么?

Is there any convenient way to find out what those other 8 are (without going back to the provisioning portal?)

有没有什么方便的方法可以找出其他 8 个是什么(无需返回配置门户?)

enter image description here

在此处输入图片说明

采纳答案by Vibhor

Just open the .mobileprovision file in a text editor. You will see all the UDIDs under ProvisionedDevices key.

只需在文本编辑器中打开 .mobileprovision 文件即可。您将在 ProvisionedDevices 键下看到所有 UDID。

回答by pigmasha

I wrote a small program that shows all installed provision profiles and its devices. Application and source code are available from here

我写了一个小程序,显示所有已安装的配置文件及其设备。应用程序和源代码可从这里获得

https://github.com/pigmasha/MAProvisions

https://github.com/pigmasha/MAProvisions

Application features

应用特点

  • view all provision profiles installed on your computer
  • select any profile and see its information and its devices list
  • you can add names for your devices UDIDs
  • objective-c note: all controls created programmatically (no .nib, .xib or .storyboard files)
  • 查看您计算机上安装的所有配置文件
  • 选择任何配置文件并查看其信息及其设备列表
  • 您可以为您的设备 UDID 添加名称
  • Objective-c 注意:所有以编程方式创建的控件(无 .nib、.xib 或 .storyboard 文件)

Suggestions will be well received

建议会很受欢迎