Does allow list requires importing cordova.js to work correctly? #512
Replies: 1 comment 2 replies
-
I don't believe so because the allow list plugin does not have a JS interface and is something that I believe is loaded on load, rather than initialised in the JS runtime. Any plugins that offer a JS API does need But loading your web app remotely is also not a supported configuration and is not something really tested for. The web app should be bundled with the binary.
Also note that by default the in app browser plugin doesn't clobber To re-iterate, If you're loading your web app remotely, then using So if you plan to use Cordova to provide a remote hosted application that uses standard browser features, then consider Progressive Web App deployment instead. It will be far more secure. If you're using Cordova because you need access to native device APIs, then you should architect your application to be able to run offline locally on device. |
Beta Was this translation helpful? Give feedback.
-
Hello there, I'm trying to set an allow list/whitelist for a few sites. However my website is hosting in a cloud server. I wonder if I need to import cordova.js into my project for the allow list/whitelist to work correctly?
Another question is that I saw that the
_system
target"window.open(url, '_system')" only mentioned in thecordova-plugin-inappbrowser
. Does hyperlink with target_system
only works if I add thecordova-plugin-inappbrowser
to my project?Beta Was this translation helpful? Give feedback.
All reactions