Set the gradle project name to F-Droid like ant

This commit is contained in:
Daniel Martí 2014-06-05 10:20:06 +02:00
parent ce42783583
commit 67b608e4e5
2 changed files with 4 additions and 2 deletions

View File

@ -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 { subprojects {
// The support-v4 library assumes certain things are defined in the // The support-v4 library assumes certain things are defined in the
@ -134,6 +132,8 @@ subprojects {
rootProject.ext.supportRepoOut = "" 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 { afterEvaluate {
android { android {

View File

@ -1,3 +1,5 @@
rootProject.name = "F-Droid"
include ':extern:AndroidPinning' include ':extern:AndroidPinning'
include ':extern:UniversalImageLoader:library' include ':extern:UniversalImageLoader:library'
include ':extern:MemorizingTrustManager' include ':extern:MemorizingTrustManager'