views:

1904

answers:

4

I am going to implement StoreKit in an iPhone application and wanted to know if there is any experience out there already that could point out any pitfalls or traps in using StoreKit?

I know the API is new - but there is some premium content in my app that I would like to ask users to pay for and this seems an ideal way to do it - rather than directing them to a website for separate payment on their subscription.

I also assume there are guidelines for how you list an app in the app store to make clear that the app is free to install - but you must upgrade for certain functionality.

UPDATE (from comments): You cannot convert a FREE app into a paid app - so the user must first install it at the minimum cost before you can then use the StoreKit API to charge for additional software.

2ND UPDATE: You can now use the API in Free Apps - Apple changed the rules recently


Can anyone recommend a good application that uses the StoreKit API that I might model the user interaction on?

A: 

Just be careful to read the documentation well, and do all of the things necessary to re-load data on secondary devices.

Keep in mind there is a difference between consumable things (don't have to support free re-purchase on other devices) and non-consumable items (where you do, which sounds like what you have).

Also, the single biggest tip I've heard is when testing, log out of your own iTunes account on the phone and log into the account you are using for testing.

Kendall Helmstetter Gelner
+1  A: 

I think one has to consider the current state of ratings and reviews. Customers have been trending toward the negative (to the detriment of many great developers) in their impression of applications.

I suspect that SK will give your customers yet another reason to be "upset" with your application.

You will have to be careful how you represent your "premium" or "additional" content. Bear in mind that up until now, customers have been getting free updates to there apps. There is bound to be a backlash from customers dependent upon your execution and you target market.

In fact, it will probably provide a boost to your sales if you advertise: "I do not charge for additional content". I can see this being a new trend in attract customers by assuring them that $1.99 IS $1.99.

So, in addition to customer perception you must maintain the back-end infrastructure to save customer records for recovery. I realize the prospect of open-ended profit seems enticing, but there is much to consider before implementing this for your apps.

Corey Floyd
This answer is no longer correct - but I don't seem to be able to change that!
Grouchal
A: 

I made a nice wrapper around StoreKit framework. the wrapper is available here

Mugunth Kumar
+3  A: 
Carl Coryell-Martin