Extracts bundled web assets from the APK to the filesystem so the native
HTTP server can serve them.
On Android, assets live inside the APK and cannot be served directly by
a native HTTP server. This hook copies each file listed in the manifest
from asset:///www/<file> to <Paths.document>/www/<file>.
On iOS, assets are accessible from the bundle directory, so extraction
is skipped and staticDir is returned as undefined (the server falls
back to the bundle path).
Extracts bundled web assets from the APK to the filesystem so the native HTTP server can serve them.
On Android, assets live inside the APK and cannot be served directly by a native HTTP server. This hook copies each file listed in the manifest from
asset:///www/<file>to<Paths.document>/www/<file>.On iOS, assets are accessible from the bundle directory, so extraction is skipped and
staticDiris returned asundefined(the server falls back to the bundle path).