언어 설정

Menu
Sites
Language
Make a call in the Gear S2

Hey guys,

I'd like to make an app that can call someone, is there a way to do this on the gear s2?

Thanks in advance :-)

Responses

1 댓글
Nafisul Islam Kiron

Hello, as far as I know the call function works in mobile and not in wearable.

 

var appControl = new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/call",
                                              "tel:0123456789", null, null, null, null);

tizen.application.launchAppControl(appControl, null,
                                   function() {console.log("launch application control succeed");},
                                   function(e) {console.log("launch application control failed. reason: " + e.message);},
                                   null);

https://developer.tizen.org/ko/development/guides/web-application/tizen-features/application/application/common-application-controls?langredirect=1#call