i have created two subscriptions in the google play console, both with a free trial. After some internal changes we decided to remove the trial off of these two subscriptions and create a new subscription with a free trial. Now i have:
- two subscriptions that shouldnt have a free trial
- one subscription that should have a free trial
I deactivated the free trial on the older subscriptions as i am supposed to do in the play console. But when i look at them in the app, the older ones still have the free trial (which they shouldnt) and the newer one doesnt have the free trial (which it should).
For the in-app implementation i am using RevenueCat with Flutter.
After logging the offers to the console i get this for the older ones:
introductoryPrice: null
and for the new one with the supposed free trial:
IntroductoryPrice(price: 0.0, priceString: €0.00, period: P2W, cycles: 1, introPricePeriodUnit: DAY, periodNumberOfUnits: 14)
RevenueCat seems to get the right information about the subscritions. But Google still shows the old subscritions with a free trial and the new one without.
Old subscription which shouldnt have a free trial, but has:
New subscription which should have a free trial, but hasn't
Old subscription which shouldnt have a free trial, but has
New subscription which should have a free trial, but hasn't
How long does it take Google to recognize such changes in the offers, or am i doing something wrong?
Thanks for the help!