Using custom uri protocols in iOS and Android, we can open default applications from our own applications. For example, to open the default maps application, iOS gives us maps://, but on Android we have geo://.
I want to open a default email client for everyone. For the default email application, iOS gives us message://, but does anyone know that the Android equivalent should open the default email application.
(I tried 'mailto: //', but on both platforms this launches a new email, rather than just launching the mail application)
Thank.
EDIT: INTENTS are not an option, I need to use a URI scheme.
source
share