From 8ead919faea814e86e8f665e9122a35bcd82d869 Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Tue, 4 Apr 2017 15:42:58 -0700 Subject: [PATCH] Managed to get the project to mostly compile, still need to re-work the build command to add the app project --- 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 ca869900..d2b2e4dc 100755 --- a/bin/lib/create.js +++ b/bin/lib/create.js @@ -135,7 +135,7 @@ function copyBuildRules(projectPath) { var srcDir = path.join(ROOT, 'bin', 'templates', 'project'); shell.cp('-f', path.join(srcDir, 'build.gradle'), projectPath); - shell.cp('-f', path.join(srcDir, 'app', 'build.gradle'), projectPath); + shell.cp('-f', path.join(srcDir, 'app', 'build.gradle'), path.join(projectPath, 'app')); shell.cp('-f', path.join(srcDir, 'wrapper.gradle'), projectPath); }