Cordova plugin error: "Uncaught module ... already defined"

akiraspeirs picture akiraspeirs · Oct 30, 2015 · Viewed 10.8k times · Source

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?

Answer

akiraspeirs picture akiraspeirs · Oct 30, 2015

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.