So, one of the possible solutions to enter the assets of any application is to use iTunes and a little magic.
In your case, you can easily synchronize your device with iTunes so that all applications from your devices are copied to the iTunes Media folder:
And after that, you can simply unzip the ipa file and go to Payload/AnAppName.app
, and there should be all the assets of the application.
An example 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 simply change the ipa file extension from .ipa
to .zip
and then double-click on it.
source share