I create a Tizen application for Gear S2 and I want to add feature to install another application (I know app id, name and other information).
Also I know how to launch Galaxy Apps or Samsung Apps from my Gear S2 application to install something but I can't find any information how to launch Samsung Gear Apps from my code.
The question is how to launch Samsung Gear (Samsung Gear Apps) application installed on my phone from my code (from application on Gear S2). I just need to know correct url.
Note:
To call Samsung Apps I use the tizen.application.launchAppControl() function and pass data like this:
var appid = "com.samsung.w-manager-service" , type = "phone" , url = "samsungapps://MainPage/" , extra_data = [ new tizen.ApplicationControlData("type", [type]), new tizen.ApplicationControlData("deeplink", [url]) ] , appControl = new tizen.ApplicationControl( "http://tizen.org/appcontrol/operation/default", null, null, null, extra_data )
I would appreciate any information you could provide.