I was getting the following error and my custom plugin wasn't starting.
"Uncaught module com.example.example-plugin already defined"
Why is my module getting defined twice?
This error occurred because I copy-pasted code from the generated 'example-plugin.js' back into the original plugin file.
When I added the plugin again, the generated code then got wrapped twice like this:
cordova.define("com.example.example-plugin", function(require, exports, module) { cordova.define("com.example.example-plugin", function(require, exports, module) { var exec = require('cordova/exec');
Removing the generated bits from the original example-plugin.js file fixed this.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With