I have a simple issue, when i use
var phone_number='12346789';
Titanium.Platform.openURL('tel:'+phone_number);
it goes to dial pad in android i want it to directly dial the call without prompting the user to press the call button.
I added the permissions in AndroidManifest.xml as
<uses-permission android:name="android.permission.CALL_PHONE" />
but it is not working still going ask the user to press the call button.Any one have idea of this please help.
Ali.