Languages

Menu
Sites
Language
Pickup phone call from specific number

Hi,

I'm currently developing for a Samsung Gear S and would like to automaticly pick-up a call if it comes from a specific number and if possible place an outgoing call.

Is this at all possible? I can't find anything related to it in the wearable sdk only in the native one (which I can't use).

Regards,

Thomas

Responses

3 Replies
AVSukhov

Hello,

As i known, you cannot do it using Web API.

Thomas Vriens

I have found something for making a call but no luck in picking up an incomming call so far:

        var appControl = new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/call", 'tel:' + phone);
        tizen.application.launchAppControl(appControl, null,
                function(){console.log("launch appControl succeeded");},
                function(e){console.log("launch appControl failed. Reason: " + e.name);} );

AVSukhov

Hello,

Yes, you can initiate call using AppControl functionality. But you cannot add listener to incomming call.