Fix --shared flag of create script (broke in recent gradle changes)
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 @@
             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.');
     });