From 52e575e1e75f1cc06de6e2608481c6c8639f122e Mon Sep 17 00:00:00 2001 From: Andrew Grieve Date: Sat, 4 Oct 2014 15:14:45 -0400 Subject: [PATCH 1/2] Update .gitignore to ignore /framework/build and /node_modules --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index f2c38286..55991577 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,5 @@ Desktop.ini *.iml .idea npm-debug.log +/node_modules +/framework/build From 30681eb77222f9cd5e279b069a9601f25f465ccb Mon Sep 17 00:00:00 2001 From: Andrew Grieve Date: Sat, 4 Oct 2014 15:14:51 -0400 Subject: [PATCH 2/2] Fix --shared flag of create script (broke in recent gradle changes) --- bin/lib/create.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/lib/create.js b/bin/lib/create.js index bfe6b23e..f9c42248 100755 --- a/bin/lib/create.js +++ b/bin/lib/create.js @@ -276,7 +276,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.'); });