CB-5889 Add a message in the update script about needing to import CordovaLib when using an IDE.

This commit is contained in:
Andrew Grieve 2014-01-24 10:29:04 -05:00
parent e361f88501
commit 94934ae2cf

View File

@ -220,6 +220,7 @@ exports.updateProject = function(projectPath) {
return runAndroidUpdate(projectPath, target_api, false) return runAndroidUpdate(projectPath, target_api, false)
.then(function() { .then(function() {
console.log('Android project is now at version ' + version); console.log('Android project is now at version ' + version);
console.log('If you updated from a pre-3.2.0 version and use an IDE, we now require that you import the "CordovaLib" library project.');
}); });
}); });
}; };