Is there a way to launch mail app using Linking
on Android.
The point is the scheme (Deep link) mesage:
is working only on iOS.
Here is a little example which work on iOS but not on Android:
Linking.canOpenURL('message:0').then(supported => {
if (!supported) {
console.log('Can\'t handle url');
} else {
return Linking.openURL('message:0');
}
});
Many posts official/non official talks about an activity Intent or about the scheme mailto:
but I don't want to write an email. I would like to open the mail app than the user could check the email I sent him.
By the way, I'm using react-native.