How does TestFlight do it?

This article showed how Apples OTA implementation works and can be used outside enterprises as well: ios wireless app distribution The complete process is documented by Apple. Apple also published documentation and sample code for registering devices and get the UDID by using profiles, so your website can detect which device is calling. Some additional … Read more

How to re-sign the ipa file?

It’s really easy to do from the command line. I had a gist of a script for doing this. It has now been incorporated into the ipa_sign script in https://github.com/RichardBronosky/ota-tools which I use daily. If you have any questions about using these tools, don’t hesitate to ask. The heart of it is this: CODESIGN_ALLOCATE=`xcrun –find … Read more