Is there a way to see what UDID are included in a build?

Viewed 15857

I am looking for a way to validate an IPA or mobileprovision file, to see if all my test devices have been added before i distribute the app for beta-testing.

5 Answers
  1. Get the iPA/build file. Right click and open with Archive Utility.

  2. New directory Payload will be created.

  3. Open the Payload.

  4. Package file should be there with APP Name.

  5. Right click on the File, select the “Show Package Contents”.

  6. Inside this folder, you can file a file named “embedded.mobileprovision”. Open this file using Textedit application.Or Open it using vim editor in terminal.

  7. Copy your UDID and search among the list of UDIDs in the embedded.mobileprovision file.

Follow this tutorial:

one command:

zipgrep 00008020-000D15C4343200E2 MyApp.ipa

output:

Payload/MyApp.app/embedded.mobileprovision:Binary file (standard input) matches

TL;DR:

  • IPA file is a zip file that contains a file Payload/MyApp.app/embedded.mobileprovision it works on MacOS, I didn't test on other OS

Reference:

Related