I had the same problem today. I found that the CordovaLib / Classes / CDVCommandDelegateImpl.m file does not have this:
- (BOOL)execute:(CDVInvokedUrlCommand*)command { return [_commandQueue execute:command]; }
as it was in the same file in the latest version of Cordova 3.5.0. So I added this snippet, as well as the corresponding declaration in the file CDVCommandDelegateImpl.h:
- (BOOL)execute:(CDVInvokedUrlCommand*)command;
And now my application is working! Not sure if this is a good solution, but if it works, then it's good enough :)
Łukasz Ksawery Rozbicki Sep 22 '14 at 15:17 2014-09-22 15:17
source share