open a native application android / ios / wp

1

I can open an application with a web link in ios (eg: sms = number), how do I open it on android and windows phone? is there another way to open up to the 3 OS by html or some other script?

    
asked by anonymous 11.06.2015 / 14:00

1 answer

1

In order to open applications through links you need to use URI Schemes.

Windows Phone supports some types like:

<a href="tel:(12) 3456-7890">Abrir discador</a>

In this link you can find other use examples: link

    
11.06.2015 / 21:47