Hi everybody,
The SocialSharing plugin from ngCordova (http://ngcordova.com/docs/plugins/socialSharing/) doesn’t work in my app.
I put some console log at different points to see what happen and the only thing i see in the inspector is the “CLICK” log when i tap on the button to open the social sharing options. No error or success callback are invoked.
function openShare() {
$cordovaSocialSharing.share("MESSAGE", "SUBJECT")
.then(function(result) {
console.log("SUCCESS");
console.log(result);
}, function(err) {
console.log("ERROR");
console.log(err);
});
console.log("CLICK");
}
Thanks for helping
NOTE : this code work fine on IOS.