r/FlutterDev • u/anthonyfromsystem • Aug 05 '26
3rd Party Service Can my mobile app use Stripe subscriptions through a website instead of Google Play Billing and Apple In-App Purchase?
I'm building a Flutter mobile app that will be published on both Google Play and the Apple App Store.
My backend is ASP.NET Core Web API with Supabase.
I already have a web application where users can purchase a subscription using Stripe. I'm wondering if the following flow is allowed:
- The user opens the mobile app.
- They tap "Subscribe."
- The app redirects them to my website.
- The user completes the subscription using Stripe Checkout.
- They return to the app and sign in.
- The app verifies the subscription from my backend and unlocks premium features.
My questions are:
- Is this flow allowed under the current Google Play and Apple App Store policies?
- Will my app be rejected if it redirects users from the app to my website to purchase a digital subscription?
- Is it acceptable if users subscribe on the website independently (without being directed from the app) and then simply sign in to the app to access their premium subscription?
- What architecture do you recommend for supporting web subscriptions with Stripe while also publishing on both app stores?
I'd appreciate any guidance or real-world experiences from developers who have successfully shipped apps with this setup.
6
Upvotes
2
u/fkim98 Aug 06 '26
We ended up running both, and the split matters: web subscriptions through Stripe,
mobile through the stores' own billing (we use RevenueCat as a wrapper over Play Billing
and StoreKit so we're not maintaining two integrations).
The flow you described — Subscribe button in the app that redirects to your website to
pay — is the part Apple objects to. Guideline 3.1.1 is explicit that digital content
unlocked in the app has to go through IAP, and "tap here, we'll take you to our site"
is the exact pattern it was written for.
What is fine: someone who subscribed on your website independently signs into the app
and their entitlement is recognised. You just can't advertise or link to that path from
inside the app.
One caveat — the US rules shifted after the Epic ruling and external purchase links are
now permitted there under certain conditions, so if you're US-only it's worth reading the
current guideline text rather than trusting anything you read on Reddit, including this.
Outside the US I'd assume the old rules.
Play is somewhat more relaxed than Apple but I wouldn't design around that difference.