Hi,
I am using Social Sharing plugin as part of my app deep linking strategy. However when I share following
SocialSharing.shareWithOptions(
{
message: “Check this item:”,
url: “myapp://product/” + item.Id
})
.then(() => {
alert(“Success”);
})
.catch((error) => {
alert(error);
});
it is not sent as link in several apps (whatsapp, viber etc…) where user can click but rather as plain text.
I am using android 6
does anyone how to solve this problem?
Thanks