Definition
WebAPK
A WebAPK is a small, real Android application package that Chrome generates and signs on the fly (via a Google-run server) when a user installs a qualifying PWA on Android. It gives the installed site a genuine entry in Android Settings > Apps, its own task-switcher identity separate from Chrome, and the ability to be the registered handler for its own scope's URLs.
Before WebAPK, "installed" PWAs on Android were essentially bookmarked shortcuts running inside Chrome; WebAPK made installed PWAs behave like any other Android app for system purposes such as uninstall flows, storage reporting and default-app associations.
WebAPK generation requires meeting Chromium's full installability criteria (valid manifest, HTTPS, registered service worker, qualifying icons) — sites that only meet partial criteria may still get a home-screen shortcut but without full WebAPK identity.
Updates to the manifest (name, icons, theme_color) can trigger Chrome to silently regenerate the WebAPK in the background on the next visit, since the underlying APK bytes are derived from manifest content rather than hand-edited by the developer.
WebAPK is Android/Chromium-specific; iOS has no equivalent packaging step, which is one reason install measurement and behavior genuinely differ between the two platforms rather than being a simple superficial UI difference.