The short answer

The best free alternative depends on what you are replacing. If you want a drop-in replacement for Firebase Remote Config with the same API and unlimited free fetches, use AppSpike Remote Config. If you want a managed A/B testing suite with built-in statistics, use GrowthBook or Statsig. If you want to self-host on your own servers, use Unleash, GrowthBook, or Flagsmith. If you only change a few values a month, a JSON file on a CDN may be all you need.

Comparison table

Free-tier limits verified on each vendor's official pricing page, September 2026.

Product Cloud free tier Self-hosted option Mobile SDKs Best for
AppSpike Remote Config Unlimited fetches, unlimited seats, all features Managed only Android, iOS, KMP, Flutter, React Native, Unity, Web Drop-in Firebase replacement (this is our product)
Flagsmith 50K requests/month, 1 seat BSD-3-Clause Android, iOS, Flutter, React Native Self-hosting with a polished UI
GrowthBook Unlimited flags and traffic, 3 users, 1 project MIT (open core) Swift, Kotlin, Flutter, React Native A/B testing on your own data warehouse
ConfigCat 5M config downloads/month, 10 flags, 2 environments, unlimited seats Paid on-premise only Android, iOS, Flutter, KMP High traffic with a handful of flags
Unleash No free cloud (paid from $75/seat/month) AGPL-3.0, free and unlimited seats Android, iOS, Flutter Enterprise-style self-hosting
Statsig Unlimited flag checks, 2M analytics events/month Enterprise only Swift, Android, Flutter, React Native, Unity Experimentation at scale
PostHog 1M flag requests/month, usage-based after MIT core iOS, Android, Flutter, React Native Flags bundled with product analytics
DIY: JSON on a CDN Free (GitHub Pages, Netlify, Vercel) It is your file Any (you write the fetch code) A few simple values, no targeting

Each option in detail

AppSpike Remote Config

Our product, so read this section knowing that. AppSpike is the only option on this list built specifically as a drop-in replacement for Firebase Remote Config: the SDKs keep the Firebase API names on every platform (fetchAndActivate, getString, setDefaults, subscripts on iOS), and the dashboard imports a Firebase template export in one step, including conditions and percent rollouts. Conditions are evaluated on the device from a CDN-cached template, so there is nothing to meter and the free tier has no fetch limits. Targeting signals never leave the device. A/B experiment arms are built with seeded percentage conditions, and you measure the results in your own analytics. What it does not have: Google Analytics audience targeting, and a managed experiment dashboard with built-in statistics. If you want the full managed experimentation suite, look at GrowthBook or Statsig.

Flagsmith

A mature open-source feature flag platform with remote config support. The cloud free tier is small (50,000 requests per month and one seat), so for a production mobile app the realistic free path is self-hosting the BSD-licensed version with Docker. Good UI, good mobile SDKs, and no Firebase-style API, so plan a real migration of your call sites.

GrowthBook

An open-source experimentation platform where feature flags and remote config come with the A/B testing engine attached. The cloud free tier allows unlimited flags and traffic for up to 3 users in one project, and self-hosting the MIT-licensed core is free. The strongest choice if experiments are the reason you use remote config. It analyzes results in your own data warehouse, which is either a feature or a chore depending on your team.

ConfigCat

A managed service with an unusually generous download allowance: the free tier includes 5 million config JSON downloads per month with unlimited team members. The limits are on the other axis: 10 flags and 2 environments, so it fits high-traffic apps with simple configuration needs. The management platform is proprietary, and self-hosting is a paid enterprise option.

Unleash

The standard choice for self-hosted feature management. The open-source edition (AGPL) is free with unlimited seats and deploys with Docker in minutes. There is no free cloud tier: hosted Unleash starts at $75 per seat per month. Pick it when you want flags on infrastructure you control and you have the operations capacity to run it.

Statsig

Built around experimentation, with a free tier that includes unlimited feature flag and config checks and 2 million analytics events per month. You pay as your event volume grows, not per config fetch. Strong SDK coverage including Unity. Not open source. A good fit when you want flags, config, and experiment analysis in one hosted product.

PostHog

A product analytics suite that includes feature flags and remote config, with 1 million flag requests per month free and usage-based pricing after. If you already use PostHog for analytics, using its flags is the path of least resistance. If you only need config, the full suite is more product than the job requires.

The DIY approach: a JSON file on a CDN

If you use Firebase Remote Config for a handful of values (a maintenance flag, a minimum version, banner text), you can replace it with a static file:

  1. Create a config.json with your key-value pairs.
  2. Host it on GitHub Pages, Netlify, Vercel, or any CDN.
  3. Fetch it on app start, cache the last good copy, and fall back to defaults on failure.

This is free and fully under your control. What you give up: percentage rollouts, country and version targeting, a publish and rollback history, and the discipline of a review step before values reach production. Teams tend to outgrow it the first time a bad value ships to everyone at once.

How to choose

Coming from Firebase? AppSpike keeps the API you already use, imports your template in one click, and has no fetch limits. The migration guide covers Android, iOS, KMP, Flutter, React Native, Unity, and Web.

See the migration guide