How Can I Extract an IPA from an iPhone for an App Downloaded from the App Store so that I can see the assets in the IPA?

后端 未结 1 1108
梦毁少年i
梦毁少年i 2021-02-04 10:37

One of my favorite apps was removed from the app store, i guess because it hadn\'t been updated in too long. I have it on an old device (approx iOS 7.1.2) but did not download i

1条回答
  •  感情败类
    2021-02-04 11:18

    So, one of the possible solution to get into the assets of any app is using the iTunes and a little magic.

    In your case you can easy synchronize your device with iTunes to get all apps from your devices copied into iTunes Media Folder:

    And after that you can just unarchive an ipa file and navigate to Payload/AnAppName.app and there should be all assets of the application.

    Sample with using your terminal:

    $  cd ~/Music/iTunes/iTunes\ Media/Mobile\ Applications/
    $  tar -zxf Apple\ Store\ 401000.ipa
    $  cd Payload/Apple\ Store.app/
    

    And the result will be:

    PS: instead of using bash for unarchiving, you can just change the extention of ipa-file from .ipa to .zip and after that double click on it.

    0 讨论(0)
提交回复
热议问题