cordovawebviewclient 无法解析为类型

cordovawebviewclient cannot be resolved to a type

我正在开发 cordova 应用程序 (Phonegap)。我在 Android main.java

中使用了以下方法
protected CordovaWebViewClient makeWebViewClient(CordovaWebView webView) {
    appView.setOnKeyListener(new View.OnKeyListener() {
        @Override
        public boolean onKey(View v, int keyCode, KeyEvent event) {}
    });}

在以前的项目中它工作正常,但在新项目中它说 "can not resolve symbol CordovaWebViewClient"。不知道为什么。我遇到了麻烦。是因为科尔多瓦更新吗? 帮助解决这个问题....

Cordova 4 删除了 CordovaWebViewClient class (see this commit)。他们进行了许多重大更改以支持外部网络视图,例如人行横道。

有关详细信息,请参阅 4.0 release notes