Managed to get the project to mostly compile, still need to re-work the build command to add the app project

This commit is contained in:
Joe Bowser 2017-04-04 15:42:58 -07:00
parent b73c04f3c8
commit 8ead919fae

View File

@ -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);
}