Andrew Bogaevskyi
Andrew Bogaevskyi

Reputation: 2625

Configure duration of Non-Renewing Subscription

I need to add Non-Renewing Subscription into my app. I've opened iTunesConnect and added In-App Purchase with type Non-Renewing, but I can't find any fields to configure an exact duration of my subscription.

How do I set the duration of my subscription?

Upvotes: 8

Views: 4956

Answers (2)

Sumit Wadhwa
Sumit Wadhwa

Reputation: 3217

You have to handle expiration and renewing of Non-Renewing Subscription items by yourself (at your server, in your db). Apple/StoreKit takes no part in it.

It's actually quite similar to Non-consumables items. The only difference is that Non-consumables items can only be bought once whereas Non-Renewing Subscription items can be bought any number of times.

Reference

Upvotes: 1

little
little

Reputation: 3029

Unlike auto-renewable subscriptions, in non-renewing subscriptions you need to handle the duration yourself.

Follow this tutorial - https://www.raywenderlich.com/36270/in-app-purchases-non-renewing-subscription-tutorial

Upvotes: 8

Related Questions