From 9ae3d2c074bebd3ce63a453af44c5da27244c21f Mon Sep 17 00:00:00 2001 From: Ian Clelland Date: Thu, 11 Sep 2014 15:12:07 -0400 Subject: [PATCH] CB-7512: Copy cordova.gradle file to project root on build --- bin/lib/create.js | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/lib/create.js b/bin/lib/create.js index 0b79533d..c0458194 100755 --- a/bin/lib/create.js +++ b/bin/lib/create.js @@ -123,6 +123,7 @@ function copyBuildRules(projectPath) { shell.cp('-f', path.join(srcDir, 'build.gradle'), projectPath); shell.cp('-f', path.join(srcDir, 'settings.gradle'), projectPath); + shell.cp('-f', path.join(srcDir, 'cordova.gradle'), projectPath); } function copyScripts(projectPath) {