How to open contacts or phone app on Android from CTRL

Find and share HowTos to various installations / configurations!
2 posts • Page 1 of 1
mkoller
Posts:741
Joined: Fri Sep 17, 2010 9:03 am

How to open contacts or phone app on Android from CTRL

Post by mkoller »

As I got this question recently, I'd like to share the findings I have made:

To open the phone app, use:

Code: Select all

openUrl("tel:");
To open the phone app with a specific number defined:

Code: Select all

openUrl("tel:123456");
To open the contacts app:

Code: Select all

openUrl("content://com.android.contacts/contacts/");

I just tested this on Android.
If anybody has an idea how to do the same on iOS, please share.

kilianvp
Posts:443
Joined: Fri Jan 16, 2015 10:29 am

Re: How to open contacts or phone app on Android from CTRL

Post by kilianvp »

iOS dont provide a URL Scheme to Open Contacts app

2 posts • Page 1 of 1