In the current implementation, on Windows, app_links will only treat argv[1] that matches <scheme>://... as a URI.
However, according to rfc 39866, URIs do not always contain '/' and '//'. The following URIs are also valid:
Should the regex be changed from ^\w+:// to ^\w+:?
btw, on iOS, as long as the URL contains a single slash <scheme>:/<path>, the app can be launched from Safari.
In the current implementation, on Windows, app_links will only treat argv[1] that matches
<scheme>://...
as a URI. However, according to rfc 39866, URIs do not always contain '/' and '//'. The following URIs are also valid: Should the regex be changed from^\w+://
to^\w+:
? btw, on iOS, as long as the URL contains a single slash<scheme>:/<path>
, the app can be launched from Safari.