Without a Google account there is no Play Store on the watch — and therefore no apps. Markt (“market”) closes that gap: it signs in to Google Play anonymously and installs apps straight onto the watch.
Markt uses gplayapi, the same library as Aurora Store:
Geraet.java.https://auroraoss.com/api/auth),
which returns an anonymous Play account.AuthHelper.build(...) turns that into a complete sign-in (device check-in,
uploading the configuration).Because the watch’s real properties get uploaded, Play serves the watch variants of apps by itself (for example the Samsung Browser for Wear OS).
The obvious approaches do not work:
restriction, compatibility and even a successful delivery test do not
distinguish between a phone app and a watch app (Play will happily deliver
WhatsApp to the watch).What does work reliably is Google’s own Wear category:
/store/apps/category/ANDROID_WEAR — apps for the watch/store/apps/category/WATCH_FACE — watch facesMarkt pages deeply through these categories using the web helpers and builds a catalog of ~1000 watch apps from them, which is cached on the watch (refreshed daily). The browse lists are fed from that catalog — no phone app can end up there.
Search additionally goes through the Play web search, so that apps which are not listed in the categories can be found as well.
Through a PackageInstaller session (Installer.java, Ladedienst.java):
download → open session → write the APK into it → confirm.
Once per app the user confirms on the watch (“Do you want to install this app?”). Android requires this of every store except the Play Store.
Important: Without turning off Factory Reset Protection, every installation fails. See 07-findings.md.
“My apps” queries all self-installed apps from Play in one call
(bulkDetails), compares the versions and offers individual updates or “Update
all”.
market://details?id=<paket>&vc=<versionCode> installs an older version on
purpose — useful when the latest one requires a newer Wear OS than you have.
AppNotSupported). Markt then shows “Not available for this watch”.