We are trying to launch the webOs browser using the launch method, But we loosing the control of our current app & have to relaunch the app.
Is there any way to open a weblink without relaunching the app ?
Sharing code for ref
webOS.service.request( 'luna://com.webos.applicationManager', {
method: "launch",
parameters: {
id: "com.webos.app.browser",
params: {
target: 'www.example.com'
},
},
onSuccess: (res) => {
console.log("Browser open success. ", res);
},
onFailure: (res) => {
console.log("Browser open fail. ", res);
},
});```