Scenes V2 Webview Tasker JS Bridge Issue - Bridge functions not working
Tasker version: Latest beta
Enabled JS Bridge/ JS/ Local file access/ etc in WebView Settings
Check below code:
<html>
<head>
<script>
console.log(
(typeof Tasker.getVariable)
+ '=' + (typeof Tasker.runTask)
+ '=' + (typeof Tasker.runShell)
+ '=' + (typeof Tasker.readFile)
);
</script>
</head>
<body>
</body>
</html>
The output I'm seeing from this log cmd is:
function=function=undefined=undefined
Seems like the functions defined under JS Bridge are working, but the ones defined under Webview Actions are not.
Kindly help, if anyone is able to figure out the issue here!