You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For ChromeOS, https should be enforced for the manifest URL as PWAs are not allowed to use http. If a http manifest URL is used to create a TWA via Bubblewrap, ChromeOS will install the PWA with http causing a weird launch behavior from Play.
The text was updated successfully, but these errors were encountered:
ChromeOS uses the webManifestURL, which is a passthrough of the Manifest URL used to bootstrap the TWA, and using HTTP for this URL should be an error. This field is unused on Android.
To allow both things, It seems that separating the URL used to bootstrap the app from the webManifestURL would be the best way to go.
My proposed solution would be to ask the developer for the Manifest URL when creating the application, using the one provided to bootstrap it as default, and validate if it is HTTPS when doing that.
For ChromeOS, https should be enforced for the manifest URL as PWAs are not allowed to use http. If a http manifest URL is used to create a TWA via Bubblewrap, ChromeOS will install the PWA with http causing a weird launch behavior from Play.
The text was updated successfully, but these errors were encountered: