How To Add(install) Plugin In Phonegap 3.0?
I created new cordova project. but I can't installed plugin I have been using the following command. $plugman install --platform android --project . --plugin git-wip-us.apache.org/
Solution 1:
I think plugman is for version 2.9 or less, instead you should use:
$ phonegap local plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-device.git
As shown here:
http://docs.phonegap.com/en/3.0.0/guide_cli_index.md.html#The%20Command-line%20Interface
Post a Comment for "How To Add(install) Plugin In Phonegap 3.0?"