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?

link|improve this question

79% accept rate
feedback

3 Answers

Backwards compatibility should be compartmentalised into a single module that upgrades schemas and data from v1 to v2, from v2 to v3, etc., until the system is up to the current version. This should be the process even for customers who upgrade a v3 app straight to your latest v10 app, thus sparing you the effort of coding upgrades for every combination of vX to vY (X<Y). At each release all you have to worry about is how to get from vN to vN+1.

I've built desktop software that has used this technique successfully for many years of upgrades. We are moving away from this towards a branched schema management model, due to the need to service multiple clients with interim fixes that not everyone needs. However, since the App Store enforces a linear upgrade path, the problem is much simpler and the old 1→2→3→...→N model should work just fine. I should note, though, that my experience is limited to SQL databases. I haven't tried this with CoreData (and probably never will; CoreData sucks at ad-hoc queries, which I use copiously), so YMMV.

A/B testing is something you'll just have to bake in up-front. Figure out the various tests you want to perform and the proportion of users you want to put into each testing bucket. Use a weighted dice-roll on each device to place each user into a bucket, then attach the chosen bucket (along with the app version, of course) to the metrics you capture. To apply the decisions arising from A/B tests, it's probably simplest to release a new version of your app.

link|improve this answer
Thanks for the answer, but let me clarify what I mean by backwards compatibility. I mean compatibility b/w my backend and the app. If there's a REST interface that the backend exposes for v1 of the client then this interface will have to be maintained forever even if the latest released client is already at version 5 since there's no way to tell how many clients still haven't upgraded from v1. With web this is different. – Ran Jan 5 at 6:22
Ah, that's different. The simple answer is to go back in time and bake into v1 the ability to detect and report a deprecated or unsupported protocol version, with a nice "please upgrade" message (or "please upgrade by {date}" for supported but deprecated versions) to the user. Given an existing product, you should start by implementing this for your next and subsequent releases, and you'll have to decide whether to support extant versions forever or eventually just allow them to fail. You could also provide a warning in the "what's new" message for the next release. – Marcelo Cantos Jan 5 at 7:38
Marcelo thanks, that's definitely one possible way. But I was actually hoping to learn about different techniques, some that combine native apps with dynamic web content and provide developers with more control over what actually runs on the clients and, at least in theory the possibility to update daily. I believe these kind of techniques are utilized by a few high profile companies (google, facebook) and I was hoping to learn more... – Ran Jan 5 at 8:01
feedback

You have to combine the advantages of a native app and a mobile app to iterate faster. Instead of delivering everything through the app store, you could load additional packages at startup from a web server.

I'm not familiar with IPhone Development, but on Android you could as far as just open a browser within your app and load the entire user interface from a web server. Only functionality which needs access to the phone would be implemented directly within the app, e.g. take a picture. That's an extreme example, but you should get the idea.

Note that you don't have to run the app on the server. You could for example download a script and execute it on the phone.

link|improve this answer
Oh, I just noticed, that you mentioned that yourself in a comment to Marcelo's answer. So you're searching for concrete implementation hints? – Chris Jan 11 at 8:42
yeah, I guess I'm searching for more concrete implementations and techniques. I started out the question as more general but then I realized there was no magic bullet I was missing and I'd have to go with the combination of web/native. I'll update the question to emphasize that I'm looking for techniques and tools. – Ran Jan 15 at 10:41
feedback

To give you a complete answer more details are needed, but to tackle A/B testing on Android I'd use the following approach:

Android allows you to upload different APK's to the market for the same app as described here.

You can create different versions of your app, for example one meant to test bucket (variable) A, and one meant to test bucket B. Upload both APK's to the market. From the user's point of view, they will appear as a single app, but behind the scenes you have discrete control over each one. The two versions must target different device configurations. You should be smart about choosing the device-specific configuration to best suit your target audience. Using market statistics of other published apps you might have can be helpful. (Just to give an example: If you want to test a risky variable, choose an Android API level that doesn't have many users (very new and very old Android versions) to reduce risk).

I don't know if iPhone allows such a trick, but if not you could try something like this: Each time an app is downloaded, it contacts your server and asks for a counter (the server then increases the counter). Save the result on the phone. The app behaves in way A if the counter is odd, and in way B if the counter is even. If each version interacts with a server that requires different functionality, then sending the counter along with a request can be one solution.

Maintaining backward compatibility is an issue of course.

If you don't want to develop a separate native app for iPhone / Android, you may want to choose a cross-platform solution. Maybe the new Adobe Flex Builder can be appropriate for you.

You can't overcome Apple's app-review policy, but using 3rd party markets like Cydia might be a temp solution during the testing phase. Alternatively you can release the Android version during testing, and release iPhone later on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.