Plugin not found, or is not a CDVPlugin. Check your plugin mapping in config.xml
问题 I have declared my plugin file for iOS inside plugin.xml like so: <config-file target="config.xml" parent="/*"> <feature name="CDVOP"> <param name="ios-package" value="CDVOP"/> </feature> </config-file> <header-file src="src/ios/CDVOP.h" /> <source-file src="src/ios/CDVOP.m" /> In the plugin JavaScript file I have this function which I later call from the JavaScript app showCatPictures: function(interval) { exec(null, null, 'CDVOP', 'showCatPictures', [interval]); }, I am running the app that