I am trying to build a business around an iPhone app. The app will be our main sales channel, and being able to adapt the sales channel faster than the 9-10 days delay cause by the app review times is crucial. Therefore, I was wondering whether there is anything I can do to improve the speed of reviews. I am thinking that the publishers of Angry Birds, surely would not have to wait in line for reviews on the same terms as some obscure free app. So what can I do? Some things I am considering:
- Would Apple prioritize apps that they earn money on?
- Could I in some way pay Apple directly?
I already know of the possibility of requesting an expedite review, but it seems like one can get punished for supplying a non-technical reason.
Don’t know what you app is, but have you considered/would a data driven model work for you – the app would not need to change and the data can be downloaded of servers you provide and manage. Maybe a (yet another) DSL would be of use.
Another alternate is how locked into Apple are you? Build you business on Android – then you have the choice to use a store/deployment model that does not have this limitation. If you are starting out, there are as many Droid devices as there are Apple now days. If (when) you succeed, you will need to support “the other one”, and possibly a third anyway, Is there really any need to start up with a handicap from day 1.
I accidentally discovered a way, sort of… I recently updated one of my apps to use the new iOS 6 mapping features (it’s a transit routing app) and the review was completed from submission to App Store in just over 24 hours. On the other hand, another unrelated app update has been waiting for a week with no action.
It makes sense that Apple would prioritise apps that take advantage of new OS features, but I was surprised by how much faster it was.
Would Apple prioritize apps that they earn money on?
There is no short way. Some advises that you may pick up here might not work as well, because there is no guaranteed solution.
However, if you contact App Store for recommendation and ask openly your problem, you would definitely get the best answer or guidelines to follow. Thus, cutting corners when dealing with vendor are very high risk, that i would advice not to take.
I was wondering whether there is anything I can do to improve the speed of reviews.
You can request an expedited review, but you should only do that when there’s a legitimate reason that you need to get your app out there ASAP, such as a glaring security bug. Otherwise, just allow time for the review process in your schedule.
being able to adapt the sales channel faster than the 9-10 days delay cause by the app review times is crucial.
The best way to deal with the issue is to design your app so that you don’t need to update the app itself in order to adjust your sales channel. Anticipate the ways you might want to change the app and build all the required behaviors into your app. Then use data files to tell the app how to behave.
A simple example: instead of hard coding your product and price list into the app, put that information in a data file. Have the app download the latest file when it launches for the first time, and check for updates periodically.
A more complex example: An app that collects data from users might have the user fill out various forms. The content of each form can be specified by a data file, and the form built on the fly. Forms can be updated and new forms added just by downloading new data files.
You might even consider building a hybrid app using a tool like PhoneGap, where you specify both the UI and the behavior of your app using HTML and Javascript.
When you do update your app, you can take some steps to at least not prolong the review process:
-
Make sure that you understand and follow the review guidelines. The guidelines are mostly common sense, and if your app clearly works within the guidelines and doesn’t try to push the envelope it’ll be that much easier for a reviewer to approve it.
-
Make sure that your app works. If your app is buggy, or if it looks buggy, it’ll be harder to get it approved quickly.
-
Explain clearly what you’ve changed in the new version that you’re submitting. You can write a note to the reviewer if there’s anything special they need to know, and you should also make changes clear in the description that’s displayed in the app store.
-
Anticipate busy times for the reviewers and either submit early or plan for a longer than usual review. For example, update your app early when a new iOS version is available so that you can build against the GM and submit as soon as Apple starts accepting updates for that version.