grunt-angular-phonegap
grunt-angular-phonegap copied to clipboard
Write a complete guide
Write a guide from first step to last with screenshots.
Here are the rough steps for it :
- install node with nvm
- install the android sdk (with the infamous adb problem :#9)
- install grunt-angular-phonegap
- install a plugin (as an example)
- deploy on phonegap build
@dsimard can you please explain how to add a phonegap plugin?
Added this into Gruntfile.js, when I grunt phonegap:build or grunt phonegap:send and look at https://build.phonegap.com/apps/MY_PHONEGAP_APPID/plugins it says "This application has no plugins".
grunt.initConfig({
phonegap: {
config: {
root: 'www',
config: 'www/config.xml',
cordova: '.cordova',
path: 'phonegap',
plugins: [
'plugins/org.apache.cordova.camera', 'https://git-wip-us.apache.org/repos/asf/cordova-plugin-camera.git'
],
platforms: ['android'],
verbose: false
}
},
