Cordoba is changing its plugin architecture. Including keywords and class files.
Check the file ChildBrowserCommand.h
@interface ChildBrowserCommand : CDVPlugin <ChildBrowserDelegate>
For this. If this is not CDVPlugin, you have not updated your plugin files successfully. An analogy can be applied to Android.
Also check out the updated js file for the plugin.
var cordovaRef = window.PhoneGap || window.Cordova || window.cordova;
Here they make plugins suitable for the new cordova.
Refer to the Cordova plugin update guide https://github.com/phonegap/phonegap-plugins/blob/master/iOS/README.md
Madnik
source share