All articles
Guide6 min read

Mobile Games That Actually Work in Airplane Mode

In short

A game works in airplane mode only if it needs no login, no first-run asset download, and no server check to start. Test it on the ground: turn on airplane mode, force-close the app, then open it. If it hangs on a loading screen or asks you to sign in, it will not work in the air.

The advice repeated in every flight guide is the same: download and open your games before you board. That advice exists because a large number of games labelled offline do not survive a cold start with no connection.

The ground test that takes ninety seconds

  1. 1.Install the game and open it once with normal connectivity.
  2. 2.Turn on airplane mode.
  3. 3.Force-close the app — swipe it away completely, do not just background it.
  4. 4.Open it again and try to reach actual gameplay.

Step three is the one people skip, and it is the one that matters. A backgrounded app keeps its cached session and will happily let you play; the same app relaunched cold may sit on a spinner forever.

The three things that break offline play

  • Mandatory login — if the first screen wants an account, the flight is over before it starts.
  • First-run asset download — the install completes, but the game then pulls hundreds of megabytes the first time you open it. Common in games that advertise a small download size.
  • A blocking ad call — the game tries to fetch an ad before the menu renders and waits on a network request that will never resolve.

Categories that hold up

Arcade and endless runners survive best, because the entire game state lives on your device and a session is self-contained. Puzzle games with fixed levels usually work. Anything with leaderboards, daily events, energy timers or live opponents will not, or will work in a degraded state that keeps nagging you to reconnect.

If closing the app costs you something, the game was never built for a plane.

What to look for on the store page

  • A download size that matches the game's scope. A 40MB arcade game is plausible; a 40MB open-world game is downloading the rest later.
  • No mention of accounts, profiles or syncing in the description.
  • Reviews that mention playing on flights — the most reliable signal there is, because those players actually tested it.

How we built ours

Catch the Cup ships everything in the install, asks for no account, and stores your high score on the device. Turn on airplane mode, cold-start it, and it opens straight into the run. That is a design constraint rather than a feature — it rules out leaderboards and cloud saves, and we accepted that trade.

Test it on your next flight

Catch the Cup — free on iOS and Android.

Frequently asked questions

How do I check if a game works offline before a flight?

Turn on airplane mode while still on the ground, force-close the game completely, then reopen it. Many games only fail after a cold start, because a warm app keeps cached data that hides the problem.

Why do games that say offline still need internet?

Usually one of three reasons: a mandatory account login, assets that download on first run rather than shipping in the install, or an ad SDK that blocks the start screen while it tries to fetch a placement.