E
E
Elios2015-03-19 21:11:08
JavaScript
Elios, 2015-03-19 21:11:08

How to link to a phone number in a PhoneGap app?

How to link to a phone number in a PhoneGap app?
I use the onsen.io framework
on iphone. Standard links like this work quite well. <a href="tel:234234234">234234234</a>
On Android, they don’t work.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
L
liubko, 2015-03-20
@liubko

an article on this topic
in general, you need to specify in config.xml

<access origin="tel:*" launch-external="yes" />
<access origin="mailto:*" launch-external="yes" />
<uses-permission android:autoLink="phone" />

You can try using JS, you need the InAppBrowser plugin
window.open('tel:12345678', '_system')

I
Igor Kalashnikov, 2015-03-19
@zo0m

maybe "tel:1234" ? I am using Appcelerator Titanium and this is how I call the number.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question