Search code examples
iosudid

Can I dump the UDID in an adhoc provision file


I face a strange situation. The customer send me an provision file to distribute the adhoc version to him. But the provision file only have the UDID of his devices.

I need to do the internal test before this step. So I need distribute another adhoc version which signed by internal provision file -- including the internal devices' UDID

I want to add the customer's UDID to own provision file, this can make me signed only once when distribute an version. But I don't know the way to get the UDID from the provision file. Can I get the UDID from the provision file?


Solution

  • Yes you can:

    1. Drag and drop the provision profile file to TextEdit
    2. Find for the key ProvisionedDevices, you will get to know all the device UUID added to the profile.

      <key>ProvisionedDevices</key>
      <array>
      <string>810497198Device-UUID7f157dd8b7</string>
      </array>
      

    I hope this helps.