Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Removing autorenewable subscriptions from iPhone App

I have an iPhone app that also features autorenewable products as an in-app purchase. The products are subscriptions to our service for up to 1 year in the future. We wanted to remove the whole in-app-purchase and autorenewable product from our app in the next version.

To accomplish this, we removed the signup option inside our app, so no new user should be able to sign up. Now we would like to disable the automatic renewal for all existing users.

How can I accomplish this? Is it sufficient to remove the in-app-products for our app inside iTunes Connect? Do the users get notified about this?

like image 978
j0nes Avatar asked Mar 28 '13 11:03

j0nes


People also ask

Why can't I delete subscriptions on my iPhone?

You have to go to iTunes & App Store in your iPhone settings. Then click on your Apple ID, and go to subscriptions and you will see the app subscription there. You will be given the option to cancel it. Yeah there is only the renew payment subscription, but no option to cancel !!!

Can you hide past subscriptions on iPhone?

You can't delete subscriptions from your purchase history but you can hide them.


1 Answers

According to Apple (see WWDC 2011 Session 510, In App Purchases for iOS and OS X, at the 48:55 mark), the only things you can do as a developer to prevent subscriptions from auto-renewing are:

  • Raise the price.
  • Remove the auto-renewing IAP product from iTunes connect.

In both cases, notification emails are sent to subscribers, though not immediately. The talk says Apple checks 10 days before a (yearly) subscription renewal and sends email at that time. It's not documented anywhere, though, so I'd treat that as an implementation detail.

I've done the latter (removing the product) several times with my own (monthly) apps, and it seems to work as advertised.

One important note: if your app is a Newsstand app, it must have at least one auto-renewing subscription available. If you remove the last one, the app will be removed form the App Store. Users who have already purchased it will still be able to use it, and will be able to download copies from the "previously purchased" section of the app store, but no new copies will show up for purchase in the App Store proper.

like image 59
jemmons Avatar answered Oct 14 '22 05:10

jemmons