From 94934ae2cf648dbf02a5fe387984f3e126ed976e Mon Sep 17 00:00:00 2001 From: Andrew Grieve Date: Fri, 24 Jan 2014 10:29:04 -0500 Subject: [PATCH] CB-5889 Add a message in the update script about needing to import CordovaLib when using an IDE. --- bin/lib/create.js | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/lib/create.js b/bin/lib/create.js index bd0e2f1d..b2321bdb 100755 --- a/bin/lib/create.js +++ b/bin/lib/create.js @@ -220,6 +220,7 @@ exports.updateProject = function(projectPath) { return runAndroidUpdate(projectPath, target_api, false) .then(function() { 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.'); }); }); };