Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tool for displaying the contents of a Provisioning Profile (.mobileprovision) file? [closed]

I have the dreaded

Code Sign error: No matching provisioning profiles found: This product type
must be built using a provisioning profile, however no provisioning profile
matching both the identity “Foo, Inc” and the bundle identifier “com.foo.Bar”
was found.

... error emanating from xcodebuild (by way of Shenzhen) but I think it's lying to me. Is there a tool I can use to see what certificates and bundle identifiers are included in the .mobileprovision file I'm passing in? I've run strings on it and it looks right, but it's hard to tell exactly.

like image 474
Robert Atkins Avatar asked Oct 14 '14 14:10

Robert Atkins


2 Answers

You can try the following command: security cms -D -i some.mobileprovision but hard to tell if it will be helpful.

like image 172
Opal Avatar answered Oct 23 '22 12:10

Opal


Have you tried ProvisionQL?

https://github.com/ealeksandrov/ProvisionQL

It provides the QuickLook feature for provisioning profiles!

provisioning profie example

Check out more screenshots for how it work: https://github.com/ealeksandrov/ProvisionQL/blob/master/screenshots.md

like image 45
Mark Norgren Avatar answered Oct 23 '22 12:10

Mark Norgren