答案 0 :(得分:1)
Quick fix is to modify the block starting at LocalNotification:492 with the following:
webView.getView().post(new Runnable(){
public void run(){
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
webView.sendJavascript(js);
} else {
webView.loadUrl("javascript:" + js);
}
}
});
答案 1 :(得分:0)
我做了一个快速解决方案https://github.com/ivanhuay/cordova-plugin-local-notifications
尝试cordova plugin add https://github.com/ivanhuay/cordova-plugin-local-notifications#build_android_solution
我在一些项目中仍然存在问题:意外的顶级异常 但它在新项目中对我有用