gradle: Have project's build.gradle look for a build-extras.gradle
Project: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/commit/9e636e77 Tree: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/tree/9e636e77 Diff: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/diff/9e636e77 Branch: refs/heads/master Commit: 9e636e7765c9b228b0092c858c94014c1bce1070 Parents: c66c317 Author: Andrew Grieve <[email protected]> Authored: Tue Sep 23 21:03:17 2014 -0400 Committer: Prabhjot Singh <[email protected]> Committed: Mon Oct 6 16:23:50 2014 +0530 ---------------------------------------------------------------------- bin/templates/project/build.gradle | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/blob/9e636e77/bin/templates/project/build.gradle ---------------------------------------------------------------------- diff --git a/bin/templates/project/build.gradle b/bin/templates/project/build.gradle index ce59e32..2e4d5cb 100644 --- a/bin/templates/project/build.gradle +++ b/bin/templates/project/build.gradle @@ -190,3 +190,6 @@ def addSigningProps(propsFilePath, signingConfig) { } } +if (file('build-extras.gradle').exists()) { + apply from: 'build-extras.gradle' +} --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
