Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List installed mobile provisioning profiles

Tags:

On OSX is there any way to programmatically get the list of all iOS mobile provisioning profiles installed on the machine (that's the list you can see in XCode organizer)?.

like image 514
Sirio Avatar asked Aug 21 '12 16:08

Sirio


1 Answers

It's probably the same list, but if you look in ~/Library/MobileDevice/Provisioning Profiles you'll find the folder of provisioning profiles. So you can just use that path to generate a list (probably with NSFileManager)

Or do a search for extension .mobileprovision

like image 117
Scott Bossak Avatar answered Nov 04 '22 04:11

Scott Bossak