After updating to Xcode 8, Cordova to 6 and IOS platform to 4, the plugin causes application crashes whenever any IOS push notifications arrive.
I have got the plugin working by adjusting line 433 (from master branch) of the function notificationReceived in PushPlugin.m.
I replaced the line
[self.webView performSelectorOnMainThread:@selector(evaluateJavaScript:completionHandler:) withObject:jsCallBack waitUntilDone:NO];
with
[self.commandDelegate evalJs:jsCallBack];
The application now appears to be working fine, but are there any other side-effects of my change?
After updating to Xcode 8, Cordova to 6 and IOS platform to 4, the plugin causes application crashes whenever any IOS push notifications arrive.
I have got the plugin working by adjusting line 433 (from master branch) of the function notificationReceived in PushPlugin.m.
I replaced the line
with
The application now appears to be working fine, but are there any other side-effects of my change?