Repository: cordova-lib Updated Branches: refs/heads/master 996556a10 -> 921a1fb66
CB-8086 Added an explanatory comment. Project: http://git-wip-us.apache.org/repos/asf/cordova-lib/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-lib/commit/921a1fb6 Tree: http://git-wip-us.apache.org/repos/asf/cordova-lib/tree/921a1fb6 Diff: http://git-wip-us.apache.org/repos/asf/cordova-lib/diff/921a1fb6 Branch: refs/heads/master Commit: 921a1fb6660a8e3a1e8a7ca4017bd88bdb7e5866 Parents: 71378d7 Author: Max Woghiren <[email protected]> Authored: Wed Nov 26 16:04:02 2014 -0500 Committer: Max Woghiren <[email protected]> Committed: Thu Nov 27 11:24:47 2014 -0500 ---------------------------------------------------------------------- cordova-lib/src/plugman/platforms/android.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/921a1fb6/cordova-lib/src/plugman/platforms/android.js ---------------------------------------------------------------------- diff --git a/cordova-lib/src/plugman/platforms/android.js b/cordova-lib/src/plugman/platforms/android.js index 5bad742..d72a0b1 100644 --- a/cordova-lib/src/plugman/platforms/android.js +++ b/cordova-lib/src/plugman/platforms/android.js @@ -165,6 +165,7 @@ module.exports = { }, getCustomSubprojectRelativeDir: function (plugin_id, project_dir, src) { // All custom subprojects are prefixed with the last portion of the package id. + // This is to avoid collisions when opening multiple projects in Eclipse that have subprojects with the same name. var prefix = module.exports.package_suffix(project_dir); var subRelativeDir = path.join(plugin_id, prefix + '-' + path.basename(src)); return subRelativeDir; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
