I am not native english so I cant create a pr for this, but we need to documente the lastest changes in custom schemes handling (#263 and #274)
the things to document:
for example to allow whatsapp custom scheme and twitter
- add new config.xml preference with the custom schemes you want to support:
<preference name="AllowedSchemes" value="whatsapp,twitter" />`
- add event listeners customscheme:
inAppBrowserRef.addEventListener('customscheme', function (event) {
//do whatever you want here like:
window.open(event.url, "_system");
});
I am not native english so I cant create a pr for this, but we need to documente the lastest changes in custom schemes handling (#263 and #274)
the things to document:
for example to allow whatsapp custom scheme and twitter