2026-06-24 · 3 MIN READ
Replacing the home screen
A launcher and a game that read as one product, because they share the same storage and the score shows up with no sync plumbing at all.
Smereski Launcher is a full Android home-screen replacement, not a third-party desktop pinned over the real one. It registers the HOME intent, takes over the home button, and runs as the device's default shell once you select it in settings. That is the difference between decorating the home screen and being the home screen.
It covers the launcher basics — an app drawer, categorized apps, search, a clock, and weather pulled by location — and leans into the same WeatherStar 4000 nostalgia as my match-three game Jazzy on the 8s: a blue-and-orange palette, a scrolling forecast bar, blocky type. The launcher and the game are designed to read as one continuous product when both are installed, sharing assets and theme tokens so the visuals stay locked together as either one iterates.
The part I like is the score widget, because of what it does not do. The widget shows your Jazzy high scores on the home screen by reading the same key-value storage the game writes to. There is no sync round-trip, no broadcast plumbing, no background service shuttling data between two apps — a clear in Jazzy updates the home screen because both halves are reading and writing the same store. Owning both ends of the seam is what lets the seam disappear.
It is native Android — Kotlin, Material 3, minimum SDK 24 — and it ships through my own store like the rest of the family. The lesson is small and repeats everywhere I control both sides of an integration: the cheapest way to sync two things is to not sync them, and instead let them share the one source of truth they both already trust.
- 01Smereski Launcher — project page
The home-screen replacement and its live score widget.
/projects/smereski-launcher
- 02Jazzy on the 8s — project page
The paired game whose storage the widget reads.
/projects/jazzy-on-the-8s
- 03The combination lock on the title screen
Companion: the hidden layer inside the paired game.
/blog/jazzy-secrets
- 04Android HOME intent
How an app registers as the device launcher.
https://developer.android.com/guide/components/intents-common#Home