I've my app built with Cordova (5.5.1) and I'm trying to share Url's via WhatsApp.
I'm using the following protocol: whatsapp://send?text= test
If I open my website on a mobile browser it's working. On iOS it's working as well.
I've tried to add this <access origin="whatsapp:*" launch-external="yes" />
to my config.xml but it still not working.
I'm using InAppBrowser and this is how I'm opening my webview
var ref = window.open("http://m.estadao.com.br/?load-all=true", "_blank", "location=no", "toolbar=no", "closebuttoncaption=a", "EnableViewPortScale=no");
Any idea how to solve this ?