Fix --shared flag of create script (broke in recent gradle changes)
Project: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/commit/30afdfff Tree: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/tree/30afdfff Diff: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/diff/30afdfff Branch: refs/heads/master Commit: 30afdfff44227741927da1fb5ec2f92bebee5afc Parents: 881e666 Author: Andrew Grieve <[email protected]> Authored: Sat Oct 4 15:14:51 2014 -0400 Committer: Prabhjot Singh <[email protected]> Committed: Mon Oct 6 19:18:46 2014 +0530 ---------------------------------------------------------------------- bin/lib/create.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/blob/30afdfff/bin/lib/create.js ---------------------------------------------------------------------- diff --git a/bin/lib/create.js b/bin/lib/create.js index 74037df..a5b524a 100755 --- a/bin/lib/create.js +++ b/bin/lib/create.js @@ -305,7 +305,7 @@ exports.createProject = function(project_path, package_name, project_name, proje copyBuildRules(project_path); }); // Link it to local android install. - writeProjectProperties(project_path, target_api); + writeProjectProperties(project_path, target_api, use_shared_project); }).then(function() { console.log('Project successfully created.'); }); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
