I'm trying to add the core Geolocation Plugin to my Cordova 3.4.0 installation, but it's not working. This specific plugin just doesn't install. The other plugins install fine (device, camera, file etc), but Geolocation doesn't.
I've created the whole installation from the CLI.
cordova create c:\project br.com.project Project
cordova platform add android
cordova build
cordova plugin add org.apache.cordova.geolocation
After that, the plugin should appear in /assets/www/plugins folder, right? But it doesn't appear!
When I type
cordova plugin add org.apache.cordova.device
the Device plugin (and all others) goes right into the /assets/www/plugins folder and the plugin works fine. Only Geolocation doesn't.
Why is this happening?