Repository: cordova-android Updated Branches: refs/heads/master c1b389ad9 -> 78fa7374d
CB-9880 Fixes platform update failure when upgrading from android@<4.1.0 Project: http://git-wip-us.apache.org/repos/asf/cordova-android/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-android/commit/78fa7374 Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/78fa7374 Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/78fa7374 Branch: refs/heads/master Commit: 78fa7374d97ad9ed85c5c857a77a8f3830d600f9 Parents: c1b389a Author: Vladimir Kotikov <[email protected]> Authored: Wed Oct 28 12:39:54 2015 +0300 Committer: Vladimir Kotikov <[email protected]> Committed: Wed Oct 28 12:42:35 2015 +0300 ---------------------------------------------------------------------- bin/lib/create.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-android/blob/78fa7374/bin/lib/create.js ---------------------------------------------------------------------- diff --git a/bin/lib/create.js b/bin/lib/create.js index 9d4b4ae..0307fd5 100755 --- a/bin/lib/create.js +++ b/bin/lib/create.js @@ -309,7 +309,7 @@ exports.update = function(projectPath, options, events) { if (Number(manifest.getMinSdkVersion()) < MIN_SDK_VERSION) { events.emit('verbose', 'Updating minSdkVersion to ' + MIN_SDK_VERSION + ' in AndroidManifest.xml'); - manifest.setMinSDKVersion(MIN_SDK_VERSION); + manifest.setMinSdkVersion(MIN_SDK_VERSION); } manifest.setDebuggable(false).write(); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
