Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

ios

ipa

udid

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.

like image 367
Lohardt Avatar asked Jul 19 '12 11:07

Lohardt


1 Answers

Open the .mobileprovision file in a text editor. The devices included will be listed under the ProvisionedDevices element of the plist section.

If you use testflight, it automatically compares the devices in the profile with your registered testers.

An IPA's contents can be inspected by copying the file, renaming it as .zip and unzipping it. Inside there you will find .mobileprovision files.

like image 78
jrturton Avatar answered Sep 18 '22 19:09

jrturton