0

I'm building react-native app.

Subscription Plan A: 1$

Subscription Plan B: 2$

I need to implement purchase multiple same plans like below

PlanA * n + PlanB * k

But InAppPurchase doesn't allows purchasing multi subscriptions for same plan.

Otherwise, If I use Stripe then Apple will reject my app.

Is there any brilliant way?

ttmarek
  • 2,926
  • 1
  • 14
  • 19
Crazy Pioneer
  • 33
  • 1
  • 10

1 Answers1

0

Depending on the meaning of user buys PlanA n times you could use non-renewing subscriptions. You lose automatic renewal, but users can buy a subscription multiple times (each purchase increases the eligibility duration to the corresponding content of PlanA).

Based on the provided information, I don't see any other solution.

Paul Schröder
  • 1,440
  • 1
  • 10
  • 19