How to check iOS update scripts?

I had basic and premium versions of my application installed on one of my test phones. Then I updated the firmware to iOS 7.1 Beta 5.

In the base and premium versions there are identical binaries (some functions only turn on or off), but after the upgrade, the Premium version crashes at startup, but not in the basic version. I can run the pro version from xcode and see if it crashes because it cannot find a model for persistent storage - cocoa error 134130 (although checking if it exists in the appropriate place returns true). I run fresh installations of both versions of the application on the 7.1 simulator without any problems.

I am not sure if this is due to the beta version, or if I had a debug version of the premium application on the phone before, and this caused some problems after the update.

I would like to make sure by checking several tests, setting it to 7.0, setting it up in various ways, and then upgrading to 7.1 and seeing any problems. But I'm not sure how to do this. If I run it on the simulator, switch the simulator to 7.1, it will not save the application. This will not allow me to return to the previous version of my test phone; I have my own personal phone running iOS 7, and I can test the update there, but without the possibility of recovery, I can only perform one test.

Any suggestions?

+6
source share
2 answers

It is also possible to copy an application from one version of the simulator to another ~/Library/Application Support/iPhone Simulator/7.0/Applications/UUID-UUID-UUID-UUID-UUID to another ~/Library/Application Support/iPhone Simulator/7.1/Applications/UUID-UUID-UUID-UUID-UUID and see what happens.

The simulator must be restarted to reload available applications.

+1
source

The only way to find a crash is to view the crash logs in Organizer "Xcode -> window -> organizer"

0
source

All Articles