Android has roughly 3x the global install base of iOS but ~30% the per-user spending. The economics are genuinely different. This post is the practical lay of the land in 2026.
Google Play fees
- Google Play Developer Program: $25 one-time registration. Cheaper than Apple's annual fee.
- Standard commission: 30% on app sales and IAP.
- 15% reduced commission on the first $1M/year of revenue (similar in spirit to Apple's Small Business Program but automatic, no opt-in required).
- 15% on subscriptions from day one (vs Apple's 30% then 15% after year one).
- User Choice Billing (EU, India, certain markets) allows alternative payment processors, reducing Google's cut by ~4 percentage points.
Alternative app stores
Android allows third-party stores. The major alternatives:
- Samsung Galaxy Store — preinstalled on Samsung devices. Smaller market but specific Samsung audience.
- Amazon Appstore — on Fire devices and Amazon-owned hardware.
- F-Droid — open-source focus, free apps only.
- Direct APK distribution — sideloading. Possible but most users won't.
- Aptoide, Aurora Store, others — smaller communities.
Most indie developers stick with Play Store for reach. Alternative stores matter for specific use cases (regulated content, regional markets, free distribution of FOSS).
Revenue per Android user
Standard industry math: Android users spend roughly 25-35% per user as iOS users do on average. This varies by region and category significantly. In the US, the gap is narrower; in many emerging markets, the gap is wider but the population is much larger.
Practical implication: a freemium/IAP app makes sense on Android. A premium $9.99 paid-up-front app often struggles compared to iOS.
Regional pricing
Google Play allows per-country pricing. The standard practice is purchasing-power-adjusted pricing — $4.99 in the US might be $0.99 in India for the same app. This expands your addressable market significantly.
Tools like RevenueCat handle the regional-pricing complexity for subscriptions.
AI costs on Android
Identical to iOS — AI API costs don't depend on the user's OS. The cost-per-user math from the framework applies as-is. The wrinkle: Android's lower per-user revenue makes AI costs proportionally larger. A Claude Sonnet query that costs $0.01 represents 1% of a $1 IAP on Android vs $9.99 IAP on iOS — same absolute cost, very different margin impact.
Fragmentation tax
Android development costs more than iOS at the same feature surface because:
- More device sizes / aspect ratios / chipsets to test.
- More Android version targets (iOS users update faster).
- OEM-specific behaviors (Samsung, Xiaomi, Pixel customizations).
- Slightly weaker tooling (Android Studio is good but Xcode + Apple toolchain integration tends to be cleaner).
Budget 20-40% extra development time for an Android port vs the iOS version. AI-assisted development (Claude Code, Cursor) reduces this gap.
Strategy for AI app builders
- If you're solo, ship iOS first. Higher revenue per user, faster iteration, mature tooling.
- Port to Android once iOS is stable, ideally using a shared backend (Railway covers both) and a cross-platform UI layer (Flutter, React Native) if you want to share code — or maintain separate native UIs if you want platform-idiomatic feel.
- Use freemium / IAP on Android, not premium up-front.
- Adjust regional pricing aggressively for emerging markets.
- Lean harder on Haiku for routine queries to keep AI cost ratio sane.