【发布时间】:2015-04-25 05:58:02
【问题描述】:
【问题讨论】:
标签: android cordova phonegap-plugins localnotification
【问题讨论】:
标签: android cordova phonegap-plugins localnotification
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);
}
}
});
【讨论】:
我做了一个快速的解决方案https://github.com/ivanhuay/cordova-plugin-local-notifications
试试cordova plugin add https://github.com/ivanhuay/cordova-plugin-local-notifications#build_android_solution
我在一些项目中仍然存在问题:UNEXPECTED TOP-LEVEL EXCEPTION 但它在一个新项目中对我有用
【讨论】: