0

I have developed in IOS application i want to distribute the application in subscription basis like first 15 days it should be trail after that user has to pay the price decided for the app .Is it possible to do it from apple developer account?

Abhijit Chakra
  • 3,201
  • 37
  • 66
  • Afaik this is possible only for In App Purchases, not for apps. – shallowThought Dec 09 '16 at 14:44
  • http://stackoverflow.com/questions/12297342/how-to-set-up-in-app-purchase-free-trial-period-in-ios-app what about this – Abhijit Chakra Dec 09 '16 at 14:46
  • You need to do this in code, store an NSDate when the app is first launched. Then after 15 days you can disable doing anything in your app until the user has done the in-app purchase. – MSU_Bulldog Dec 09 '16 at 15:41

1 Answers1

0

Below are few simple steps you to achieve subscription base App upload.

Step 1: choose you product type automatically renewable subscription

Step 2: enter duration for subscription and free trail

Abhijit Chakra
  • 3,201
  • 37
  • 66
  • Apple has changed the way you offer free trail for users. See my answer here: https://stackoverflow.com/questions/12297342/how-to-set-up-in-app-purchase-free-trial-period-in-ios-app/47769055#47769055 – zvi Dec 12 '17 at 09:29