Make phone calls in Adobe AIR on Android

I want to make a phone call through an AIR application on Android. I know you can do this:

navigateToURL(new URLRequest(tel:555555555)); 

But I want to manage a phone call.

The goal is that the application missed the call of the selected number. So he calls, waits until he calls for 1 second, and then disconnects the call. But using the method described above, the application does not have control over the phone call.

thanks

+4
source share
1 answer

You currently cannot control the flow of calls using AIR applications. The best you can do is call the native call application using the tel protocol you mentioned.

+3
source

Source: https://habr.com/ru/post/1348101/


All Articles