
Key Takeaways
- You can distribute Android apps without Google Play through four methods: direct APK sideloading, alternative app stores, enterprise MDM, and Firebase App Distribution — and most serious products use at least two of them at once in 2026.
- Alternative stores (Samsung, Amazon, Huawei, F-Droid) reach a combined 2.5B users outside Google Play at a 70/30 split — 5–15 percentage points cheaper than Play's 30% cut, sometimes the only option for apps Google bans.
- Sideloaded APKs lose 50% of users to friction and 60%+ of updates to apathy — you MUST ship an in-app updater, HTTPS hosting, SHA-256 verification, and a key-rotation signing setup from day one.
- Enterprise MDM (Managed Google Play, Intune, Hexnode, Jamf) is the cheapest high-integrity channel — Managed Google Play private apps are free, Hexnode starts at $1.20/device/month.
- A multi-channel Android distribution pipeline costs US$15K–$25K to build plus ~US$1.3K–$2.8K/month to operate — payback inside 8–12 months at just US$10K/month in saved commissions.
Why Fora Soft wrote this Android distribution playbook
Fora Soft has been shipping Android apps since 2005 — and a surprising share of them never touched the Google Play Store. We built and continue to operate a fleet of Android apps for clients who cannot, will not, or should not live on Play: a dedicated Android MDM remote-device-management system for enterprise fleets, an Android build of the AppyBee fitness booking platform that distributes through alternative channels, and streaming clients such as Alve Live that need fast sideload update loops during early field testing.
Across those builds we have wrestled with every failure mode covered in this guide: Play Integrity verdicts downgrading, signing keystores lost by interns, users confused by the “Allow from this source” toggle, alt-store versionCode collisions, and, more recently, the friction introduced by the EU Digital Markets Act and Google’s developer-verification rollout. What follows is the distilled playbook we wish existed when we started. It covers the four distribution methods a 2026 Android product needs, the economics of each, and the engineering details that decide whether your rollout succeeds or stalls.
The four methods at a glance
Every non-Play Android distribution strategy in 2026 is a combination of these four channels. You should pick at least two; most mature products use three.
Rule of thumb we use on projects. If you are banned from Play, you need methods 1 + 2. If you serve enterprise fleets, you need 3. If you ship weekly, you need 4 throughout the lifecycle. Almost every non-Play product we build uses at least two channels, and the Fortune-500 Android fleets we manage typically run all four.
When it actually makes sense to distribute Android apps without Google Play
Skipping Google Play costs you 85–95% of the world’s install-completion rate and all the free discoverability. That is a massive tax. You should only pay it when one of these six conditions holds.
1. Your category is banned or throttled on Play
Adult content, real-money gambling in non-licensed markets, emulators that allow ROM loading, crypto mixers, kernel-level anti-cheat, unrestricted LLM chat apps, modded-APK distribution, and — for a long time — Epic’s Fortnite. Google enforces these bans globally. Alternative stores and sideload are the only paths.
2. You operate in a region Google does not serve
Iran, Cuba, Syria, Sudan, North Korea, and large parts of the Chinese domestic market have no Google Play access. Russia now legally requires RuStore pre-installation on every Android phone sold in the country (in force since September 2025). You need local stores or sideload to reach these markets at all.
3. You want the 30% commission back
Play takes 30% on most paid content; alt stores take 30% but you can stack multiple; sideload is 0%. Epic Games settled with Google in March 2026 and now pays 20% or less — a reminder that 30% is a negotiation baseline, not a law. If your ARPU is US$50+, even a 5-point reduction across channels is worth eight figures at scale.
4. You distribute to a controlled device fleet
Every kiosk app, warehouse scanner, field-technician toolkit, delivery-driver app and healthcare tablet is an enterprise app. They do not need public discovery. Managed Google Play with a private app track, plus an MDM like Intune or Hexnode, is dramatically cheaper and more secure than a public listing. Managed Play Private Apps cost nothing.
5. You ship weekly and need ruthless beta cycles
Play internal testing is fine but slow and brittle. Firebase App Distribution gets a new build on a hundred testers’ phones in twenty minutes. When we iterate on rapidly evolving features, every team in the studio uses Firebase in parallel with Play.
6. Your users are power users who prefer sideload
FOSS communities, privacy-hardcore audiences, rooted-ROM users, reproducible-build auditors, and security researchers often prefer F-Droid or direct GitHub Release APKs. If that is your audience, Play adds friction rather than removing it.
Method 1: Direct APK sideloading done right
Sideloading means your users download an APK file from a URL you control (your site, a cloud bucket, GitHub Releases), tap “Allow from this source” on Android, and install. It is the simplest method to describe and the hardest to execute well. Here is what our production sideload pipeline looks like.
Hosting & download UX
Serve the APK from a dedicated domain over HTTPS with TLS 1.3. Cloudflare R2 and AWS S3 + CloudFront are both excellent — we typically pay US$20–$80/month at mid-five-figure MAU. Add User-Agent sniffing to hide the APK from desktop browsers (reduces malware repackaging attempts), rate-limit downloads to two per IP per hour, and publish the SHA-256 hash beside the download button so savvy users can verify before installing.
Build a dedicated landing page that shows a silent five-second video of the install flow. Conversion goes up 15–25% when users know what to expect — the Play Protect dialog is the #1 drop-off point, and the fix is pre-teaching.
Signing: v2 + v3, always
Sign with APK Signature Scheme v2 and v3 simultaneously in 2026. v2 gives you whole-file integrity on Android 7+, v3 enables key rotation on Android 9+. v3 is the safety net against the #1 sideload disaster — losing your signing key and being permanently locked out of updating a package. Budget US$0 for the software, but spend an afternoon hardening the process: generate a 10-year keystore, encrypt it with a strong passphrase, store copies in AWS Secrets Manager plus a hardware key plus a sealed envelope in a safe. We have seen two companies forced to republish under a new package name after losing a keystore; both lost their entire rating history and a cohort of users.
In-app updater: non-negotiable
Sideloaded apps do not auto-update. Without an in-app updater, only 10–30% of your user base sees a release within 30 days. With one, that number climbs to 60–80% — comparable to Play. The mechanics:
// Minimal in-app updater on Android (2026)
// 1. Fetch manifest: { "versionCode": 234, "url": "https://…/app.apk", "sha256": "…" }
val manifest = httpClient.get("https://downloads.yourdomain.com/android/manifest.json")
if (manifest.versionCode > BuildConfig.VERSION_CODE) {
// 2. Download to cache with integrity check
val apk = download(manifest.url)
check(sha256(apk) == manifest.sha256) { "Integrity check failed" }
// 3. Ask REQUEST_INSTALL_PACKAGES, then launch installer
val intent = Intent(Intent.ACTION_VIEW).apply {
setDataAndType(
FileProvider.getUriForFile(ctx, "\${ctx.packageName}.provider", apk),
"application/vnd.android.package-archive"
)
addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
}
ctx.startActivity(intent)
}
Add: check on every launch, show a changelog dialog before prompting, respect metered-connection preferences, and always fall back to a browser download link if the in-app install fails. Our engineers budget 40–60 hours to ship a production-grade updater the first time.
Play Integrity and sideload
Over 1,000 apps now require the Play Integrity API to return a “MEETS_STRONG_INTEGRITY” verdict before unlocking features. Sideloaded APKs almost always fail this check — they return “MEETS_BASIC_INTEGRITY” at best. If your app depends on integrity (banking, trading, anti-cheat), architect around it: either degrade gracefully (read-only mode for sideload), or ship a parallel strong-integrity build only through Play for that user segment. Do not try to fight the verdict.
Warning (August 2026 rollout). Google’s developer-verification mandate begins rolling out in Brazil, Indonesia, Singapore, and Thailand in September 2026, with a global rollout planned. On certified Android devices, every installed app must come from a “verified developer.” Unverified APKs will show stronger Play Protect warnings and may be blocked entirely. Register your developer identity with Google now, even if you don’t plan to publish on Play — verification is a prerequisite for avoiding sideload friction globally.
Method 2: Alternative app stores — the 2.5B-user opportunity
Alternative Android stores are underestimated. Their combined installed base is roughly 2.5 billion users. Review cycles are faster than Play. Fees are usually zero. Revenue share is the same 70/30 you get on Play, but with less competition inside each store. The four that matter in 2026:
Samsung Galaxy Store (~1.5B users)
Pre-installed on every Samsung device and therefore reachable on roughly a third of the world’s active Android phones. Free developer account. Submission review is 3–7 business days. Accepts both AAB and APK. Special-badge programs (Seller Star, Indie Games) give you premium placement for free. Samsung has a noticeably premium user demographic: our Galaxy Store tallies on retail apps show a 1.4× higher ARPU than Play. Setup cost: US$2K–$4K to prepare assets, test on Samsung-specific devices, and pass review.
Huawei AppGallery (~580M users)
Dominant in China, Southeast Asia and parts of Europe. Post-2019 US sanctions, Huawei cannot ship Google Mobile Services (GMS) — they built HMS (Huawei Mobile Services) as a drop-in replacement. If you target Asia outside India, AppGallery is as important as Play. Your engineering team needs to add the HMS SDK alongside GMS for push notifications, maps, analytics, and in-app payments. Review is fast (24–72 hours) but the HMS migration takes 80–120 engineering hours the first time.
Amazon Appstore (~200M users)
Default store on Fire tablets, Fire TV, and the Windows 11 Android subsystem. Small but lucrative niche for games and media apps. Review is 3–5 business days. Accepts AAB. Uses Amazon’s own in-app-billing API, so you budget 30–60 engineering hours to wire it up. Revenue share is the standard 30%.
F-Droid (~10M users)
The open-source, community-run store for FOSS apps. No monetization, no developer fees, but uniquely strong brand loyalty among privacy-focused users. F-Droid requires your app to be fully open-source with reproducible builds. Submission SLA is 1–4 weeks (volunteer-run). If your app is already open-source, F-Droid is free upside.
VersionCode hack we use on every multi-store build. Store-review bots reject APKs whose versionCode has ever been used before in their system. Assign non-overlapping integer ranges: Play 100–199, Samsung 200–299, Amazon 300–399, Huawei 400–499, sideload 500–599. CI/CD generates the right versionCode per target from a single versionName. No more cross-store collisions.
Method 3: Enterprise distribution via Managed Google Play and MDM
For internal apps, fleet devices, kiosks and regulated deployments, MDM is the correct answer. It gives you forced updates, compliance logging, remote wipe, zero-touch enrollment, and 95%+ install completion — at a lower all-in cost than any public channel.
Managed Google Play (free private apps)
Google’s own enterprise channel. You pay US$25 once for a Play developer account, then publish unlimited private apps to a specific enterprise. Apps never appear in the public Play Store, reviews are lighter, rollouts are instant, and integrity is fully verified. The cheapest high-quality distribution path for any enterprise build. We default to this for all client internal apps.
Picking an MDM (2026 pricing)
Zero-touch enrollment & QR provisioning
Android 8+ supports zero-touch enrollment: corporate devices ship to the end user already knowing which MDM to register with. For BYOD or retrofit, QR-code provisioning puts a device into a work profile in under 90 seconds. We combine both on every enterprise build: zero-touch for corporate-owned, QR for personal-device work profiles.
Our Android MDM project illustrates the architecture: a central Android Enterprise console, Managed Play for app delivery, zero-touch manifest for device enrollment, and a compliance dashboard that forces updates within 72 hours of release. Deployment to a new 500-device fleet takes an afternoon.
Get expert help
Need to distribute an Android app outside Google Play?
We have shipped sideload, alt-store, and MDM-delivered Android apps since 2005. Book a 30-minute call and we’ll map the right distribution stack to your product and region.
Book a 30-minute call →Method 4: Firebase App Distribution for betas and internal testing
Microsoft App Center shut down on 31 March 2025. Firebase App Distribution is Google’s recommended replacement and, in 2026, the de-facto industry standard for Android beta delivery. Everything below is from our production pipeline.
Upload an APK or AAB with the Firebase CLI, attach a tester group, and 60 seconds later every tester in that group gets a notification from the Firebase App Tester app. One tap installs the build. Crashlytics captures all crashes. Testers see release notes you wrote in the CI job. Cost: free for most projects; heavy teams pay a few dollars a month in storage.
# CI step: ship to Firebase App Distribution
firebase appdistribution:distribute app-release.apk \
--app 1:123456:android:abcdef \
--groups "qa,designers,stakeholders" \
--release-notes-file CHANGELOG.md
Tip: keep a group per feature. Toggling who gets what build lets you run four parallel betas without leaking builds to the wrong audience. Lifespans: a Firebase App Distribution build can be force-expired with one CLI call — useful when you want to retire a buggy beta immediately.
Signing, keys and versioning: the boring decisions that wreck a rollout
Three details cause the majority of real-world sideload disasters. Fix them on day one.
Use v2 + v3 signing, generate a 10-year keystore
Build with both v2 and v3 APK Signature Schemes. v3 enables key rotation on Android 9+: if your signing key is compromised or leaks, you can rotate to a new one without forcing users to reinstall from scratch. Set the keystore validity to 10 years minimum.
Encrypt and back up the keystore to three places
Store the encrypted .jks in your secrets manager (AWS Secrets Manager, HashiCorp Vault, 1Password Teams). Back up to a hardware security key in the CTO’s safe. Print the passphrase on paper, seal it, and put it in a safety-deposit box. Yes, all three. The alternative is republishing under a new package name after the inevitable laptop loss — which costs you your install base.
Target SDK: Android 15 (API 35) or better
Google requires targetSdkVersion 35 (Android 15) for new apps and updates as of 1 September 2025. Alternative stores are aligned to the same bar. Anything older triggers Play Protect warnings and alt-store rejections. Also: include 64-bit ABIs (arm64-v8a, x86_64) as first-class, with 32-bit armeabi-v7a only as a compatibility fallback.
Play Integrity, SafetyNet and the integrity tradeoffs across channels
Over 1,000 Android apps currently enforce a Play Integrity verdict before allowing sensitive features. Banking, trading, telehealth, loyalty-point redemption, airline check-in — anywhere fraud or chargebacks are expensive. Each distribution channel produces a different verdict:
Two architectural choices follow. First: if your app does not actually need strong integrity, do not enforce it — you lock out users across Samsung, Amazon, Huawei and sideload for no real benefit. Second: if you do need strong integrity (payments, banking, licensing), ship the “high-trust” build only through Play and Managed Play, and offer a read-only / demo build through the other channels. Detect the install source with PackageManager.getInstallerPackageName() and degrade the feature set accordingly.
Practical note. Never hard-gate core functionality on a “MEETS_STRONG_INTEGRITY” verdict unless the feature genuinely requires it. We have seen finance apps lose 40% of their user base overnight after adding a strong-integrity gate without a graceful fallback — because Samsung users who installed from Galaxy Store were suddenly treated as untrusted.
How each method handles updates (and why it matters more than installs)
First install is a one-time cost. Updates are the number that compounds over every release for the life of your app. A 30-day update-adoption rate under 50% is how you end up supporting four major versions of your product simultaneously — with all the bug reports, API shims and security patches that entails. Update mechanics by channel:
Google Play. Auto-update is on by default for most users; 30-day adoption typically hits 60–80%. You can force-update critical versions via the in-app update API.
Samsung Galaxy Store. Store-managed auto-update, 30-day adoption 50–70%. Slightly slower than Play because users interact with the Samsung store less often.
Huawei AppGallery & Amazon Appstore. Similar to Samsung: store-managed auto-update, 50–70% within 30 days.
F-Droid. Users manually update from the F-Droid client. Adoption is unusually high (60–80%) because F-Droid users are engaged power users.
Direct sideload. Nothing auto-updates. Without an in-app updater, 30-day adoption is 10–30%. With an in-app updater that checks a manifest on every launch and prompts with a changelog, adoption climbs to 60–80% — comparable to Play. Ship the updater.
Enterprise MDM. IT policy can mandate auto-update on connection, deadline-based forced updates, or block non-compliant devices. 30-day adoption is routinely 95%+.
Firebase App Distribution. The Firebase Tester app notifies testers on new uploads; adoption is fast (80%+ within 48 hours) because your testers are paid or motivated.
Multi-channel CI/CD: one pipeline, four targets
The ugly truth of multi-channel distribution is that each store wants a slightly different artifact (AAB vs universal APK, HMS vs GMS, different versionCode ranges, different signing configurations, different upload APIs, different review SLAs). Done manually, this is a full-time person. Done properly with CI/CD, it is a branch rule.
# .github/workflows/release-android.yml (excerpt)
jobs:
build-matrix:
strategy:
matrix:
channel: [play, samsung, amazon, huawei, sideload]
steps:
- uses: actions/checkout@v4
- name: Compute versionCode
run: echo "VERSION_CODE=$(./gradlew -q printVersionCode -Pchannel=$\{\{ matrix.channel \}\})" >> $GITHUB_ENV
- name: Build AAB or APK
run: ./gradlew :app:bundle$\{\{ matrix.channel \}\}Release
- name: Sign with channel keystore
run: ./scripts/sign.sh $\{\{ matrix.channel \}\}
- name: Publish
run: ./scripts/publish_$\{\{ matrix.channel \}\}.sh
Implementation notes: each channel gets its own flavor (productFlavors) to isolate HMS vs GMS dependencies; each flavor has its own applicationIdSuffix so debug builds can coexist on a tester phone; and each publish step is feature-flagged so you can skip a flaky store without blocking a release. Plan 80–120 engineering hours to build this the first time. It pays back within the second release.
Fora Soft Android services
Get your Android CI/CD pipeline multi-channel ready
Our senior Android engineers design and implement multi-channel pipelines with signing, versioning, HMS/GMS flavors and per-store publish jobs. Typical turnaround: 5–7 weeks.
Scope it with our CTO →Compliance: DMA, developer verification, regional mandates
The regulatory landscape for Android distribution shifted dramatically in 2024–2026. Three rules matter most.
EU Digital Markets Act (active since March 2024)
Google must allow sideloading, alternative stores, and linking to external payment systems on certified Android devices in the EU. For you, this is opportunity: EU users can legally sideload. It is also a compliance cost: if you host APKs for EU users you need a GDPR-compliant privacy policy, transparency report, and — in many interpretations — identity verification of downloaders. We add a lightweight age gate and region check on the download page.
Google developer verification (rolling out September 2026)
Starting with Brazil, Indonesia, Singapore, and Thailand in September 2026, Google will require every installed app on certified Android devices to come from a verified developer. You verify by registering with Google Play Console (free, even if you never publish there) and completing identity verification. Without this, your sideloaded APKs will hit stronger Play Protect dialogs and may eventually be blocked. Register before September 2026.
Russia RuStore mandate (active since September 2025)
Every Android phone sold in Russia is required by law to ship with RuStore pre-installed and unhideable. If you target the Russian market, you must publish to RuStore or accept that sideload is your only path in. RuStore review is fast, free, and in Russian. For region-restricted builds, add an IP-based region check to avoid distributing where you shouldn’t.
Case study: a field-operations app that never went to Play
A logistics client asked us to build a driver-facing dispatch Android app for their 3,800-vehicle fleet. Drivers received a mix of rugged handhelds and personal BYOD phones. The app needed real-time GPS, offline routing, and scanner integration. Public distribution would have been a security liability — the app exposes operational telemetry competitors would love.
We shipped via Managed Google Play (private apps) + Hexnode MDM. Zero-touch enrollment handled corporate phones; QR-code work-profile enrollment handled BYOD. Managed Play pushed updates silently; Hexnode enforced a 72-hour update SLA via compliance policy. Cost: US$1.20/device/month for Hexnode (US$4,560/month total), US$0 for Managed Play. Total distribution ops cost: under US$55K/year for a 3,800-device fleet. Install completion: 99.1%. Update adoption within 72 hours: 97.3%.
The same pattern — Managed Play + MDM — now runs hundreds of thousands of enterprise Android devices worldwide. If your app is internal, this is almost always the right answer. For a closer look at the hands-on MDM work involved, browse our Android MDM project.
What it actually costs to run a multi-channel Android distribution pipeline
These are 2026 numbers from our own book, for a hypothetical SaaS product shipping weekly to four channels (direct APK sideload, Samsung Galaxy Store, Amazon Appstore, Managed Play for enterprise customers) plus Firebase App Distribution for betas.
On our Agent Engineering discount, we typically deliver the pipeline in 5–7 weeks with one Android senior plus a part-time DevOps specialist. That is the baseline; add 40–80 hours for every additional alternative store, MDM, or region you need on top.
Five 2026 trends reshaping Android distribution
1. Developer-verification becomes the new baseline. Google’s verification rollout (Brazil, Indonesia, Singapore, Thailand in September 2026; global thereafter) normalises identity-verified APKs. Any unverified developer will see elevated Play Protect warnings on certified devices. Register now.
2. Rev-share becomes negotiable. Epic’s March 2026 settlement put Fortnite back on Play at a negotiated 20% or less. That precedent is now quietly spreading to any app with 10M+ DAU. If you are at scale, have the conversation.
3. Play Integrity adoption cascades. 1,000+ apps today, 10,000+ within 18 months. If your app has not yet decided how it handles a degraded integrity verdict for sideload and alt-store users, decide before your competitors lock out those users by accident.
4. State-backed stores multiply. Russia’s RuStore mandate in 2025 will not be the last. Expect similar mandates in China (already de-facto), India, and potentially Brazil. Architect for a growing list of regional stores, not a fixed four.
5. Android Enterprise becomes the default for B2B. Managed Google Play, zero-touch enrollment, and modern MDMs (Hexnode, Kandji for Android) have pushed internal-app friction effectively to zero. Any enterprise Android project in 2026 should start there — public Play has no role for internal tools.
Seven pitfalls that quietly kill non-Play Android rollouts
Every pitfall below has bitten a real team we’ve consulted for.
1. Shipping without an in-app updater
Sideloaded apps do not auto-update. Within a quarter, most of your user base is on a stale version. Add the updater to your v1 scope.
2. Assuming Play Integrity will just work
Banking, trading, and anti-cheat apps fail hard on sideload. Design graceful degradation from the start.
3. Losing the signing keystore
Permanent package-name lockout. Back it up in three places; rotate with v3 if you suspect compromise.
4. VersionCode collisions across stores
Alt stores reject APKs with previously-seen versionCodes. Use non-overlapping ranges per store.
5. Repackaged-APK malware
Attackers mirror your APK with a malicious payload. Publish the SHA-256 on your site, sign with v3, and implement anti-tamper checks.
6. Zero discoverability
No store = no search traffic = no installs. Budget paid acquisition, SEO-optimized landing pages, and community building from day one.
7. Not registering for Google developer verification before September 2026
Unverified APKs on certified devices will face aggressive Play Protect warnings. Register now, regardless of whether you ship to Play.
KPIs to track from launch
Install completion rate (Play 85–95%, alt stores 70–85%, sideload 30–50%, MDM 95%+). Update adoption within 30 days (Play 60–80%, sideload 10–30%, MDM 95%+). Play Integrity verdict distribution (segment by channel; track drift). Channel-level crash rate (sideload often runs older Android, so segment). Install-to-first-value time (sideload ≥ 3× longer than Play — this is where you should invest UX). Review rating by store (Samsung runs premium; sideload has no store reviews, so run in-app surveys).
FAQ
Is sideloading legal?
Yes, in every major market. Android has allowed sideload since day one. The EU Digital Markets Act explicitly protects it. Only the exact UX Google imposes on the install flow can change by region and by version; the legality doesn’t.
Will Google’s developer-verification mandate kill sideloading in 2026?
No — it will not block verified developers from distributing APKs directly. What it will do is add friction to unverified APKs on certified Android devices: stronger Play Protect warnings, possible blocks. Register with Google Play Console (free) and complete identity verification to keep your sideload channel friction-free.
Can I distribute a paid Android app without Google Play?
Yes. Samsung Galaxy Store, Amazon Appstore, and Huawei AppGallery all support paid apps and in-app billing. For sideload, roll your own billing via Stripe, Paddle, or LemonSqueezy — you keep 96%–100% of revenue versus Play’s 70%.
How do I push updates to sideloaded apps?
Ship an in-app updater. It checks a remote JSON manifest (versionCode, download URL, SHA-256 hash), downloads the new APK, verifies the hash, and launches the system installer via Intent.ACTION_VIEW with REQUEST_INSTALL_PACKAGES permission. Without an updater, only 10–30% of sideload users install a given release within 30 days.
What is Managed Google Play and why do enterprises love it?
Managed Google Play is Google’s enterprise private-app channel. You publish an app that only your customer’s employees can install — it never appears in public Play. Rollouts are instant, integrity is full-strength, and it costs nothing beyond a one-time US$25 developer account. It is the cheapest high-integrity Android distribution path and the default for internal enterprise apps.
How much more revenue do I keep by distributing outside Google Play?
Play takes 15–30% (15% under US$1M/year per developer; 30% above). Sideload with your own billing keeps 96%–100%. Alternative stores also take 30% but are frequently waived for the first year or negotiable at scale. A product doing US$10M/year that shifts 30% of revenue from Play to sideload captures ~US$900K/year additional margin — before acquisition cost.
What happens if I lose my signing keystore?
You can no longer ship updates to the existing package name. Users would have to uninstall and reinstall your app under a new package, losing everything in local storage. If you signed with APK Signature Scheme v3 before the loss, you can rotate keys. If you didn’t, republish under a new package name. Back up the keystore to at least three locations.
Which Android target SDK do I need to hit in 2026?
API 35 (Android 15) for all new apps and all updates to existing apps on Play. Alternative stores largely align. Older target SDK versions trigger warnings or outright rejections. Also bundle 64-bit ABIs (arm64-v8a, x86_64); 32-bit is only a compatibility fallback.
What to read next
Mobile Development
How to pick an AI mobile app development company
What to look for in a mobile partner in 2026, with evaluation rubrics and sample deliverables.
AI Engineering
How to build apps with AI end-to-end
From code-gen to infra: a practitioner’s guide to using AI across the mobile build cycle.
Case Study
Our Android MDM remote device management build
How we shipped Managed Play + MDM to an enterprise Android fleet with 99%+ install completion.
Case Study
AppyBee: fitness booking Android app with multi-store distribution
Release pipeline, alt-store listings, and how we kept WER-grade install quality across channels.
Case Study
Alve Live: live streaming on Android with fast beta loops
Firebase App Distribution + sideload channel for a video platform iterating weekly.
Ready to distribute your Android app without Google Play?
Choosing the right mix of sideload, alternative stores, MDM and Firebase App Distribution is a strategic decision that depends on your category, region, customer type and economics. Get it right and you unlock 2.5 billion users plus five to fifteen points of margin. Get it wrong and you are one lost keystore away from a rebrand.
Fora Soft has been building and distributing Android apps outside Google Play for two decades. We have shipped to Samsung, Amazon, Huawei, F-Droid, Managed Play, and direct-sideload channels, and we run production MDM fleets for clients across logistics, fitness, streaming and enterprise IT. If you want a 30-minute diagnostic of your distribution strategy — what to build, what to skip, and what to budget — book time with our CTO below.
Free 30-minute strategy call
Pick the right Android distribution stack in one call
Map your product, users, regions and economics to a two-to-four-channel distribution plan — with cost and timeline estimates you can take to your next budget review.
Book your 30-minute call →Prefer to skim our work first?
Browse the Fora Soft portfolio, read our AI-assisted mobile build guide, or dig into our Android MDM case study. When you’re ready to talk, we’ll be here: calendly.com/vadim-fora-soft/30min.


.avif)

Comments