Open Marcophono2 opened 7 years ago
This is handled via the config.xml, see cordova whitelist plugin. Look for
Thanks. But that cannot be the reason.
<access origin="*" /> <allow-intent href="*" />
Best
Marc
access defines which resources (img, xhr) can be accessed. allow-intent defines which intents, e.g. facebook (http://facebook*) are allowed to be opened externally. allow-navigation controls which urls the webview can access.
s. https://stackoverflow.com/questions/35336522/difference-between-allow-navigation-and-allow-intent
Hello! My app displays html content which is located within an iframe. The target address is a standard http(s) remote address. On the html websites there are some advertisement codes placed like Google Adsense. If a user clicks onto such advertisement the Android browser breaks out of the Cordova container. But I want to keep the target advertiser website within the Cordova container. I did not find any setting I can use to change the Cordova/Crosswalk behaviour. Or did I miss it?
Best Marc