Between native apps that go through app-store review process (android non-review), and web apps that just live in browsers, through hybrid apps that utilize phonegap or other home made UIWebView support, what are industry's best practices to minimize deployment time a-la continuous deployment while still maintaining the goodness and features of native mobile apps? (push etc)
My app is in the store but every time I update a version it takes a few days for apple to approve. This is of course normal, but painful.
Not only that, but even worse, even after the app is on the store, not all users install the new version immediately (or ever). This leaves a very long tail of backwards compatibility support behind and a huge headache...
How am I supposed to iterate fast, perhaps perform AB testing, when first, it takes about a week for apple to approve a new version and second I have to maintain backwards compatibility virtually forever?
Coming from a web shop where I implemented continuous deployment, where we used to deploy dozens of times every day, this is very frustrating...
What are industry's best practices to beat the current marketplaces inherent slowness so we could to iterate faster, experiment and not have to deal with such a long tail of back-compat support?
Requirements wise, the app needs to:
- Run on iOS, Android, perhaps later on other devices
- Access a few of the local resources, such as address book, push notifications
- Store data locally (currently I use Core Data)
- Well.. look good, perform animations, not be clunky, feel right... This section is negotiable and it's hard to quantify it but users will know when I bargin too low...
Please note that the same (or very similar) question was also asked on Quora but was left unanswered, so maybe SO is better home for it... http://www.quora.com/What-are-the-best-practices-for-continuous-deployment-of-mobile-apps
Update: I realize there's no magic bullet and the secret sauce is a good combination of native and web. The question is therefore what are some tools and techniques you recommend you found useful to build lean, fast iterative, mobile app?