RevenueCat Paywalls (free) vs paywall code in your repo: how to choose

First, the honest part: RevenueCat Paywalls is free under $2,500 monthly tracked revenue (then 1% of what you track), and for a lot of apps it is simply the right answer. Remote paywall changes without app releases, curated templates, an AI editor that generates a paywall from a description, multipage flows, A/B experiments, analytics integrations — at zero cost up to the threshold. If that solves your problem, use it and ship. We sell a paywall module ourselves and we're telling you this up front, because a comparison page that pretends the free option doesn't exist is marketing, not a decision tree.

So the real question is: which kind of paywall owner are you?

What dashboard paywalls give you

What dashboard paywalls cost you (the constraints)

These are facts from RevenueCat's own docs, not opinions:

Adjacent vendors confirm the pattern: Adapty is free under $5k/mo tracked revenue (then 1%, 30,000+ apps); Superwall is free to $10k MAR (then 1%, Startup $49/mo, 10,000+ apps, with a React Native runtime). All three monetize tracked revenue at scale — none of them sell you the code.

What code-in-your-repo gives you

What code-in-your-repo costs you

Honesty cuts both ways: you lose remote iteration. A copy change means an app release. A/B testing means building or buying it yourself (client-side flags, your own analytics). You own the maintenance of the screen. If your paywall copy changes weekly and you experiment aggressively, dashboard tooling exists precisely for you — use it.

The decision tree

  1. Under $2.5k MTR and templates are fine? → RevenueCat Paywalls. Done. Ship.
  2. Need remote changes / frequent A/B without releases? → RC Paywalls (or Superwall/Adapty — same category, compare their floors and fees yourself).
  3. Targeting watchOS/tvOS/visionOS, or below iOS 15 / Android 7? → dashboard paywalls don't cover it; code in your repo does.
  4. The paywall must implement a bespoke design system, or live in the repo for review/compliance reasons? → code in your repo.
  5. You build via a coding agent and want the install machine-verified? → code in your repo, with an install that ends in a verify receipt.

Both branches still need the same store-side work — products, entitlements, disclosures, the rejection checklist. And the branches can mix: RevenueCat's SDK handles purchases and entitlements in both worlds; the question is only who owns the paywall UI — their dashboard, or your repo.

If you land on branch 3–5 and use React Native: the inno9 paywall module is exactly that branch — six TypeScript files in src/paywall/, RevenueCat-wired, with the verify receipt at the end. $79 one-time, code lives in your repo (details). The full from-zero path is in the React Native paywall guide.

FAQ

Is RevenueCat Paywalls really free?

Free while your monthly tracked revenue is under $2,500; then 1% of tracked revenue. Check their pricing page for current terms — the numbers above were verified from their site in September 2026.

Can I mix them — RevenueCat for the backend, my own paywall UI?

Yes — that's precisely what repo-code paywalls on RevenueCat do: the SDK handles purchases, offerings, and entitlements; your code owns the screen, config, and gating. You give up only the dashboard-composed UI and its remote editing.

What about Adapty or Superwall?

Same category, same trade: free tiers under a revenue threshold, then a percentage. Superwall ships a React Native runtime; Adapty targets 30,000+ apps. All are dashboard-composed; none sell you the code. The decision tree's branch 2 vs 3–5 applies to them equally.

What's the catch with repo code?

You lose remote iteration: paywall changes become app releases, and A/B testing is yours to build. You also own maintenance — though "own it" is the point for some buyers: the paywall can't outlive your access to a vendor dashboard.