Hey,
I have an interesting subscription model in my app. I have users pay X€ for them to provide 1 service, X+Y€ for them to provide 2 services, X+2Y€ for them to provide 3 services, and so on... All subscriptions are monthly, there is no yearly/quarterly subscriptions.
The way I imagined creating this this was to just have a new subscription for every price point. Stripe would handle this easily, but unfortunately I wont be able to use Stripe as their subscriptions are outside of the app and would not be approved by Apple. So, I have 22 services, making 22 different subscription tiers. In the frontend I check the amount of services the user provides, and based on that number they pay that subscription.
Now I am wondering how to set this up correctly. In the Google Play Console, I can set up 22 subscriptions, or I can create 1 subscription and under that one subscription I 22 base plans. Which is the way to go?
Apple is more straight-forward maybe. I create one subscription group and under that group I create 22 subscriptions, right?
From here on I can just import these subscriptions into RevenueCat so I believe that wont be a challenge once I set them up correctly in the Google and Apple consoles.