The sample code for Gruntfile.js is missing a level:
"phonegap-build": { main: { options: { archive: "app.zip", "appId": "YOURAPPID", "user": { "email": "YOUREMAIL", "password": "YOURPASSWORD" } } } }
Without "main" - the task will never actually trigger.
The sample code for Gruntfile.js is missing a level:
"phonegap-build": {
main: {
options: {
archive: "app.zip",
"appId": "YOURAPPID",
"user": {
"email": "YOUREMAIL",
"password": "YOURPASSWORD"
}
}
}
}
Without "main" - the task will never actually trigger.