florian h
florian h

Reputation: 1171

Auto-renewing subscription – Differences to non-renewing subscription

I have a question regarding in-app payments for iPhone apps. I thought the only difference between auto-renewing subscriptions and non-renewing subscriptions was obviously the self-renewing thing. But as I read through the documentation it seems that there are other important differences. This is how I understood it:

Auto-renewing:

Non-renewing:

Is this correct?

I seems like auto-renewing subscriptions are way better for my app, even though I don't need the subscription to necessarily renew automatically.

But, as an additional question, when I added a new product in iTunes Connect, I had only the choice between "Consumable", "Non-consumable" and "non-renewing subscription" - but no auto-renewing subscription?!

Best regards

Upvotes: 2

Views: 7466

Answers (2)

yonel
yonel

Reputation: 7865

I think you get the differences globally.

Some corrections however:

  • is restored after a device reset
  • is automatically transfered between different devices on the same iTunes account

Not really, it's up to you, in your application, (usually in the dedicated "store" part of your application) to propose a restore subscription so that the user will be able to get back his subscription on this iOS device (this may be needed if he resets the device as you said, but also if he deletes the application and reinstall it). The restore action (triggered in your code via StoreKit) will automatically prompt the user for his iTunes password, so this cannot be done automatically without user acknowledge.

  • user can disable auto-renewing (so it might behave like a non-renewing subscription)

yes this can be achieved from the settings in the iPhone, in the "store" part, and then display for apple ID properties: the user will get a view with all his on going subscription + a switch to disable the auto renewing.

  • when I added a new product in iTunes Connect, I had only the choice between "Consumable", "Non-consumable" and "non-renewing subscription" - but no auto-renewing subscription?!

I also had this at the beginning, the reason for that is that you didn't acknowledge a part of the contract (Amendments) that is specifically related to autorenewable subscription. As far as I can remember, go to the Contracts, Tax, Banking part of itunesConnect and you should have something to agree on, then you'll be able to create auto-renewable in app purchase.

Upvotes: 5

user207616
user207616

Reputation:

a subscription is not synced with iTunes instead it is saved on a apple server somewhere. It is stored in your account (indeed thats not correct, it can be synced but I mean it's not only stored on the device). "Consumable" are such things like ammo in a shooter game. You can buy them more than one time and but this would mean that "Non-consumable" and "non-renewing subscription" are nearly the same.

Did you read the customer help also additionally to the developer documentation? http://support.apple.com/kb/ht4009

Upvotes: 0

Related Questions