From 67b608e4e56a33226c58cd42ab5780b4db2a149a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Thu, 5 Jun 2014 10:20:06 +0200 Subject: [PATCH] Set the gradle project name to F-Droid like ant --- build.gradle | 4 ++-- settings.gradle | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index d9699d94e..481041b70 100644 --- a/build.gradle +++ b/build.gradle @@ -122,8 +122,6 @@ android.applicationVariants.all { variant -> } } -// This is the hacky way which we force the subprojects to use the same build tools: -// http://stackoverflow.com/a/21032272 subprojects { // The support-v4 library assumes certain things are defined in the @@ -134,6 +132,8 @@ subprojects { rootProject.ext.supportRepoOut = "" } + // This is the hacky way which we force the subprojects to use the same build tools: + // http://stackoverflow.com/a/21032272 afterEvaluate { android { diff --git a/settings.gradle b/settings.gradle index f7d0cded9..e558f2f78 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,3 +1,5 @@ +rootProject.name = "F-Droid" + include ':extern:AndroidPinning' include ':extern:UniversalImageLoader:library' include ':extern:MemorizingTrustManager'