Payments and business models

App Monetization in 2026: What Apple and Google Take, and How to Keep More

Before a line of code is written, the store rules have already decided how much of every payment you keep. Get the model right and a booking business pays the stores nothing. Get it wrong and a subscription hands over 30 percent it did not have to. There are really only two ways to collect money in an app, and which one you are allowed to use is decided for you. Here is how that works, without the developer jargon.

Thomas SiudutThomas SiudutCo-Founder and CEO, Apps Value July 28, 20267 min read
Payments App Store Business model
Key takeaways for building a monetization model
  • Decide first where each thing you sell is consumed. On the phone means the store's billing and a commission. In the real world means your own processor and no store cut.
  • Real world services keep 100 percent of the store fee: bookings, in person sessions, deliveries. The stores are not allowed to take a cut, so a services model has structurally better margins than a content one.
  • Digital content pays 15 to 30 percent. Enroll in the Small Business Program before launch to pay 15 instead of 30 while you are under 1 million dollars a year, and remember Apple drops a subscription to 15 percent after a subscriber's first full year.
  • Model both stores, not just Apple. Google now splits its fee so most subscriptions still land near 15 percent, and its own checkout can shave a further 5 percent on larger transactions.
In app purchase

The store's own payment system, on Apple and Google alike. Mandatory for anything digital your app sells: subscriptions, premium features, content.

Stripe

A payment provider for everything the store's system must not touch: real world services, bookings, physical goods.

Start with what you sell, not with the tool

Both app stores apply the same one test to every payment in every app: where is the thing being consumed? If it is consumed on the phone, the payment must go through the store's billing. If it is consumed in the physical world, the payment must stay out of the store's system entirely. Apple's version of this rule is the stricter one, so the article works through Apple first and then shows where Google differs.

That single test sorts almost every business model. A subscription to workout videos is consumed on the phone, so it is in app purchase. A haircut, a training session, a delivered meal, a cleaning visit, all of these are consumed in the real world, so they are paid through a provider like Stripe and Apple takes nothing. Not because Apple is being generous, but because its own guideline 3.1.5(a) forbids using in app purchase for physical goods and services.

So before anyone debates tools, write down what your app charges money for. Each item on that list already has its payment path assigned by the guidelines. The tools follow.

In app purchase: mandatory for digital, at Apple's rates

Guideline 3.1.1 is the one that gets apps rejected. Any digital content, feature, or subscription sold inside the app must use Apple's in app purchase system. Routing a premium tier through your own checkout is among the most common rejection reasons in App Review.

The commission is less brutal than the headline 30 percent, if you use the mechanics:

  • 30 percent is the standard rate on purchases and the first year of a subscription.
  • 15 percent applies to that same subscription once a subscriber has paid continuously for more than one year.
  • 15 percent from day one in the App Store Small Business Program, for developers under 1 million dollars of annual App Store revenue. Most new products qualify, but you have to apply. It is not automatic and it is not retroactive.

One recent shift worth knowing: since a 2025 US court ruling, apps on the US storefront may link out to a web checkout for digital purchases. On most other storefronts the classic rules still apply. For a US heavy audience this opens a real alternative, at the cost of extra product work, so it is a scoping decision rather than a default.

Stripe: required for the real world

Everything Apple's system is forbidden to touch runs through a standard payment provider, and in mobile projects that provider is usually Stripe. Bookings, marketplace transactions, payouts to service providers, refunds for cancelled appointments. When we built Evesport, a personal trainer booking platform, all of the payment engineering lived here: charging clients for sessions, paying trainers out, handling cancellations. Apple's commission never entered the picture.

There is one exception that surprises even experienced teams. Guideline 3.1.3(d) allows realtime one to one services between two individuals, and Apple's own examples include tutoring, medical consultations, and fitness training, to be paid outside in app purchase. A live video session between one coach and one client can go through Stripe, commission free. The same session streamed to a group cannot. One sentence in the guidelines, a 15 to 30 percent margin difference.

If you sell subscriptions, do not build the plumbing yourself

Those two options, in app purchase and Stripe, are the whole picture for how money enters an app. There is no third one hiding here. But if your business model runs on subscriptions, there is a tool worth recommending on top of in app purchase, and it is the one thing we tell almost every subscription client to use: RevenueCat.

RevenueCat does not move money and does not replace either payment path. It sits on top of the store billing and handles the machinery around subscriptions: validating receipts, knowing whether a given user is currently entitled to premium, keeping that answer identical across iOS and Android, subscription analytics, and paywall testing. Building all of that yourself is weeks of unglamorous engineering that every subscription app needs and no user ever sees, and it does not change what the store charges either way.

It slots cleanly into either stack we build in, whether that is a Flutter app or a React Native one, so the recommendation holds regardless of the technology. If your app has no subscriptions, you can skip it entirely: it solves a problem you do not have.

Evesport subscription paywall built on in app purchase

Matching the model to the payment path

Put together, the choice between the two options is mostly made for you by your business model:

  • Subscription content app. In app purchase, almost always with RevenueCat on top. Enroll in the Small Business Program before launch.
  • Booking or services app. Stripe for the transactions and payouts. Apple takes nothing, and in app purchase is not allowed to be involved.
  • Hybrid, services plus premium features. Both paths side by side: Stripe for the service payments, in app purchase for the digital tier. Plan the two from the start, because adding a second path later touches checkout, receipts, refunds, and accounting at once.
  • One to one live services. Stripe is permitted under 3.1.3(d), as long as it stays strictly one to one.

Google Play: same logic, different numbers

Everything above is framed around Apple because Apple's rules are stricter and its review is where teams get caught. Google Play applies the same core test, digital goods go through its billing, real world services stay outside it, but the numbers changed materially in 2026 and are worth knowing before you model revenue.

As of a June 2026 change in the US, UK, and European Economic Area, Google separated its charge into two parts: a service fee that applies no matter how you collect payment, and a billing fee that only applies if you use Google's own billing. For subscriptions the service fee is 10 percent, and Google's billing adds 5 percent on top, so most subscription apps still land at 15 percent, the same effective rate as before. The difference is that you can now route payment through your own checkout or a web link and skip that 5 percent, paying your processor instead.

Whether that saves money depends entirely on transaction size. On a small monthly plan, a card processor's fixed per transaction fee eats most of the 5 percent you saved. On a large annual renewal, the processor's percentage comes in under 5 percent and you keep the difference. So the honest answer for a prospect is that Android's lower headline rate is real, but it only shows up in your accounts on higher value transactions, and it is a decision to make per product rather than a blanket win.

FAQ

Does Apple take 30 percent of bookings made through an app?

No. Payments for services delivered in the physical world must be processed outside Apple's system, and Apple takes no commission on them. The 30 percent applies to digital content and features only.

Can we use Stripe for our subscription instead of in app purchase?

Not inside the app on most storefronts. Digital subscriptions sold in the app must use in app purchase. The US storefront allows linking out to a web checkout since 2025, and subscriptions sold on your website have always been yours to process with Stripe.

Is RevenueCat required for in app purchases?

No. Apple's StoreKit is enough on its own. RevenueCat replaces the custom backend work around subscriptions, which is why it earns its place on subscription products and adds little on apps without them.

Do the same rules apply on Google Play?

The core logic is identical: digital goods through Google's billing, real world services outside it. The numbers differ. Since a June 2026 change in the US, UK, and EEA, Google splits its charge into a 10 percent service fee on subscriptions plus a 5 percent billing fee if you use Google's billing, so most apps still pay about 15 percent. Route payment through your own checkout and you skip the 5 percent, which pays off mainly on larger transactions.

Which store is better to launch on first?

It rarely comes down to fees. Launch where your users are. The fee difference between the two only becomes a real number at scale or on high value transactions, so for a first version it is not the deciding factor. What matters more is that your payment model is clean on whichever store you submit to first, because that is where a rejection would cost you a launch date.

Thomas Siudut, Co-Founder and CEO of Apps Value
Written by
Thomas Siudut

Co-Founder and CEO, Apps Value

Thomas takes the first call on most Apps Value projects. He spends it working out what your operation actually needs, what belongs in version one and what does not, and whether building anything is the right move yet. If it is not, he will tell you on that call. If it is, you get a written scope and a fixed price before a line of code exists.

Not sure which path fits your model?

Tell us what your app will charge money for. We will tell you which payments run through Apple, which go through Stripe, whether RevenueCat belongs in the build, and what all of it does to your numbers.

Book an intro call

30 minutes, no preparation needed.