A tool to display the contents of a Provisioning Profile (.mobileprovision) profile file?

I have a scary

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. 

... an error coming from xcodebuild (via Shenzhen ), but I think it is lying to me. Is there a tool that I can use to see which certificates and package identifiers are included in the .mobileprovision file I am transferring? I ran strings on it and it looks right, but it's hard to say for sure.

+6
source share
2 answers

You can try the following command: security cms -D -i some.mobileprovision , but it's hard to say if this will be useful.

+16
source

Have you tried ProvisionQL?

https://github.com/ealeksandrov/ProvisionQL

It provides a QuickLook feature for preparing profiles!

provisioning profie example

See more screenshots of how this works: https://github.com/ealeksandrov/ProvisionQL/blob/master/screenshots.md

+3
source

Source: https://habr.com/ru/post/976724/


All Articles