5

I am using Revenuecat for flutter. During package subscription I want to give certain discount to the users while purchasing. Is there any way to give discount from client side on package subscription?

Ranjit Shrestha
  • 622
  • 6
  • 24
  • You want to give a discount for a one time purchase to a user IF he/she is already subscribed, while non-subscribed users get to pay full price for that one time item? Is this correct? – Michele Volpato Dec 17 '21 at 14:17
  • Considering my yearly subscription package default price is $98. I want to give a discount to the users who subscribed to the package in January. Users who subscribed in January will have to pay only $48 for the whole year. After then they will pay the regular price. How can I achieve this is google play and apply pay in app purchase? – Ranjit Shrestha Dec 17 '21 at 15:02

1 Answers1

2

You can use iOS subscription offers, or iOS offer codes, and Android promo codes which are not exactly what you want.

As far as I know, Apple and Google subscriptions are period based (monthly/yearly) only, compared to calendar based ("subscribe for this year").

What I would do is create a subscription offer that last a certain number of months and after those months it becomes full price. The certain number of months (and the offer price) depends on how far you are in the year.

Michele Volpato
  • 700
  • 6
  • 14