webview setJavascriptInterfaceScheme无效

cocoscreator3.6.2
android原生

var scheme = "testkey";
this.webGame.setJavascriptInterfaceScheme(scheme);
this.webGame.setOnJSCallback((target: any, url: string) => {
    let str = url.replace(scheme + '://', '');
    console.log("----cocos3333333333---",target,str,url);
});

调用:
document.location.href = ‘testkey://close’;

这些代码怎么都没效果,求具体姿势.

在Android上测试了一下,可以用, 有一些限制:
1.调用 this.webGame.setJavascriptInterfaceScheme(scheme);时,需确保WebView active为true. 或保证webview被初始化。
2. url要保证为合规字符,不然会出现异常Failed to create URI from url