// Woocasino is a single-player sequence-memory game: glowing nebula orbs flash in a growing order and you smack them back in the same order across sixty constellations.
[01] Information collected // inputs
None. The app has no sign-up, no login, no email field, and no contact, camera, location, or photo access. The only thing you ever type into it is a “call sign” — a display name for your own player card — and it never leaves the device.
[02] Local storage // on-device
Kept in OS-level local storage on your device, never uploaded:
- Progress — which of the sixty constellations you have cleared, the star rating (0–3) and best score for each, and how many times you have finished each one.
- Currency — your balance of “motes”, lifetime earned total, the date of your most recent daily tribute, and how many tributes you have claimed.
- Upgrades — the tier you own in each of the four permanent upgrade tracks.
- Player card — the call sign and avatar index you selected, plus lifetime totals (attempts played, taps made, longest and deepest chain reached).
- Merits — the identifiers of the achievements you have unlocked.
- Settings — your readability preferences (glyph marks, calm pulses, chain counter) and the first-launch / how-to-play flags.
Uninstalling the app deletes every byte.
[03] Permissions // runtime
The app requests no runtime permissions — never camera, microphone, location, contacts, photos, storage, or notifications. The Android manifest declares INTERNET, inherited from the standard Flutter template; the app contains no networking code, so the permission is declared but never exercised, and it is a normal-level permission that is never shown to you as a prompt.
[04] Network // egress
Fully offline. There is no backend, no API, no telemetry endpoint, and no remote configuration — every level, upgrade, and merit is computed on the device, and the app functions identically in airplane mode. Even the Inter typeface is bundled inside the app package rather than downloaded at runtime.
[05] Third parties // vendors
No third-party analytics, advertising, attribution, or crash-reporting service is integrated — no Firebase, Google Analytics, AdMob, Crashlytics, Sentry, Amplitude, Mixpanel, or AppsFlyer. The one place control leaves the app is the Share button on the Record screen: it opens your operating system’s own share sheet with a short sentence about your progress. You decide whether to send it and to whom; whatever app you forward it to is governed by that app’s own privacy policy.
[06] Children // coppa/gdpr-k
Woocasino is a general-audience puzzle game with no user-generated content, no chat, no purchases, and no advertising. Because it collects no personal information from anyone, it collects none from children, and it therefore does not knowingly collect personal information from children under 13 (COPPA) or under 16 (GDPR-K).
[07] Your rights // you
Because nothing is transmitted, there is no server-side copy of anything to request, export, correct, or delete. Change your call sign or avatar on the Record screen, adjust readability preferences on the Controls screen, and erase everything by uninstalling the app or clearing its storage from your device’s app settings — both remove the local database permanently and immediately.
[08] Changes // changelog
If this policy changes, the updated field at the top of this page will be revised. Material changes are also noted in the app's release notes.