All notes

How to check whether an Android game really works offline

You are about to spend three hours on a plane, or forty minutes underground on a commute with no signal. You install something that says offline, and at 10,000 metres it opens on a spinning connection icon.

This happens because the label you are looking for does not exist. Here is what Google Play does tell you, and the one test that gives a real answer. Checked September 2026.

There is no "works offline" field on Google Play

The store has a required field for ads, a required field for in-app purchases, and a required Data safety section. It has no standard field where a developer declares that the game runs without a connection. Nobody can fill it in, because it is not there.

So every method below is reading a proxy. The final one is not — it is a test.

The "Offline" tag is a hint, not a promise

Some listings show an Offline tag, and it looks official because it is. It just does not mean what people assume.

Google assigns a set of tags automatically, and developers cannot pick them in the Play Console. "Offline" and "single player" are both on that automatic list. So the tag is Google's classifier making a judgement from the description and the build — a useful signal, and not a commitment anyone made to you.

Treat it the way you would treat a helpful stranger's opinion. Worth having. Not worth boarding a flight on.

What the listing does tell you

  • The developer's own words. Plain text like "play offline" or "no internet required" in the description is a claim somebody chose to publish. That is worth more than silence, and more than an automatic tag.
  • Contains ads. If the game serves ads, there is a network call somewhere in it. That does not mean it fails offline, but the ad code has to fail gracefully, and in cheap games it often does not.
  • Data safety. A game declaring no collection at all is unlikely to be talking to a server at startup. A game declaring account information and device identifiers is.
  • Recent reviews. Search the reviews for "offline", "plane" and "no internet". Players who got burned say so in those words.

What you cannot read anywhere is the thing that decides it: whether there is a network call on the path to the main menu.

The first-launch trap

Plenty of genuinely offline games still need one connected launch before they are offline. Three common reasons:

  • Extra data. The install from Play is a shell, and the real assets download the first time you open it. This is normal for anything large.
  • A one-time licence or account check. Runs once, then never again — unless the first run is on the plane.
  • Optional content packs that the game fetches in the background while you play the opening.

None of this is dishonest. It is just invisible until it bites. Install a day before you travel, not at the gate.

The airplane-mode test

This is the only method that answers the question, and it takes four minutes.

  • Install over wifi and open the game.
  • Play a full session. Let any first-launch download finish, and get past the opening tutorial.
  • Force-stop the app. Settings, Apps, the game, Force stop. Backing out to the home screen is not enough.
  • Turn on airplane mode.
  • Open the game again, cold.

The force-stop matters more than it sounds. A warm app still holding a session in memory will happily let you play and tell you nothing. A cold start in airplane mode is exactly what your commute or your flight will do to it.

If it reaches the main menu and starts a round, you have your answer. If it hangs, shows a retry dialog, or silently refuses to start a level, you found out at your desk instead of at altitude.

What still breaks in an offline game

A game can be genuinely playable offline and still lose parts of itself:

  • Rewarded ads. The ad cannot load, so the reward is gone. If the economy leans on rewarded video, offline play quietly gets harder.
  • Cloud saves. Progress stays on the device until you reconnect, which matters if you are switching phones.
  • Daily bonuses and login streaks. The counter usually needs a trusted clock, which means a server.
  • Leaderboards, events, friend lists. All out.
  • Background licence re-checks in some premium games, which can surface days later.

Decide in advance which of those you care about. For a flight it is usually none of them.

Before a long trip

  • Install and run each game once, at home, on wifi.
  • Force-stop, airplane mode, cold start. Confirm each one.
  • Check whether progress is stored locally or synced, if you care about keeping it.
  • Prefer single-player, turn-based or run-based games. They have the fewest reasons to call a server.
  • Charge the phone. An offline game that runs at full frame rate for three hours is a battery problem, not a connection problem.

Where we stand

Hopvera builds for phones people already own, which means assuming the signal is bad and the device is mid-range. A game should open and give you a full round with the radio off.

Related: how to find games without ads or in-app purchases, and what to look for in a game for a short break. Questions go to Contact.