The WP-plugin targets the same function call as the iOS/Android plugin, namely "cordova.plugins.barcodeScanner". Since they are both set to clobber, they will overwrite each other in a Cordova project that targets both WP and iOS/Android.
Short of merging this with the other plugin, you can avoid this by making the <js-module> platform specific (by putting it under <platform name="wp8">).
The WP-plugin targets the same function call as the iOS/Android plugin, namely "cordova.plugins.barcodeScanner". Since they are both set to
clobber
, they will overwrite each other in a Cordova project that targets both WP and iOS/Android.Short of merging this with the other plugin, you can avoid this by making the
<js-module>
platform specific (by putting it under<platform name="wp8">
).