Search code examples
androidcordovaphonegap-pluginslocalnotification

Local notification plugin broken after cordova upgrade


I was using this plugin for cordova local notification. Since cordova 5.0.0 with android@4.0.0 was released it does not work anymore. I found the bug here.

Is there a way to temporarily solve it?

Thanks


Solution

  • 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);
        }
      }
    });