How to find out what profile was used for building *.ipa file?

后端 未结 5 1570
粉色の甜心
粉色の甜心 2020-12-02 09:59

Is it possible and how to grab that information about profile just from existing *.ipa file?

5条回答
  •  自闭症患者
    2020-12-02 10:09

    Something like the following dumps an xml version of the provisioning profile:

    unzip -p .ipa Payload/.app/embedded.mobileprovision | security cms -D
    

    Replace and accordingly. If you don't know what should be, try:

    unzip -l .ipa | grep mobileprovision
    

提交回复
热议问题