Cordova升级到3.1.0后,无法调用onNotificationGCM函数= register。所以我可以获得已注册手机的推送通知,但新手机无法注册。
检查ATD的控制台,我得到了这个:
W/PluginManager(31200): THREAD WARNING: exec() call to PushPlugin.
register blocked the main thread for 30ms. Plugin should use
CordovaInterface.getThreadPool().
任何人都有同样的问题,可以就此提出一些建议吗?
答案 0 :(得分:4)
以某种方式找到gWebView.sendJavascript(_d);未在 PushPlugin.java 中的 sendJavascript 函数中运行。它可能是PushPlugin错误或Cordova错误。
/*
* Sends a json object to the client as parameter to a method which is defined in gECB.
*/
public static void sendJavascript(JSONObject _json) {
String _d = "javascript:" + gECB + "(" + _json.toString() + ")";
Log.v(TAG, "sendJavascript: " + _d);
if (gECB != null && gWebView != null) {
gWebView.sendJavascript(_d);
}
}
将gWebView.sendJavascript(_d);
(第105行)更改为 gWebView.loadUrl(_d)将解决问题。