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

后端 未结 5 1578
粉色の甜心
粉色の甜心 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:26

    Below are step for getting profile details from an IPA file :

    1. Change the extension of IPA to ZIP. This will prompt an alert whether to keep .ipa or use.zip. Go with Use .zip option

    1. This will convert IPA to ZIP file

    1. Extract the ZIP file by double click on it

    1. This will create a folder with contents : Payload, SwiftSupport and Symbols

    1. Goto Payload -> App file

    1. Right click and ‘Show Package Contents’ for App file

    1. This will show detailed content such as codeSign, localised file, framework, provision files etc of your app file

    1. You can see provision profile details in embedded.mobileprovision. This file can be read only in txt file format. So add an extension .txt to file

    1. Now open this file using textEdit. Now thoroughly go through this file you can see provision profiles for the IPA.

提交回复
热议问题