From d9590743d9b8f93399e051b95e14d3055a6c221c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Wed, 1 Apr 2015 11:59:31 +0200 Subject: [PATCH] Get rid of root build.gradle hacks again Now that we controll all lib build.gradle files, we can finally do it. If we want to build support-v7 from source again with gradle, we'll import the build.gradle and "fix" it like the rest. --- build.gradle | 41 ----------------------------------------- 1 file changed, 41 deletions(-) diff --git a/build.gradle b/build.gradle index ee2cde779..12f3ff69b 100644 --- a/build.gradle +++ b/build.gradle @@ -2,17 +2,6 @@ * This is *NOT* the main build script for F-Droid. The main build.gradle * is in F-Droid/build.gradle. Usually multi-project builds don't have a * build.gradle in the top level directory (http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Dependencies-Android-Libraries-and-Multi-project-setup). - * - * This build script contains miscellaneous hacks to ensure that all of - * F-Droids dependencies can be built from source. - * Each hack should be documented, and in the future, may need to be changed - * in order to ensure that we keep pace with any changes upstream makes to - * their build processes. - * - * - Some subprojects don't have gradle build scripts, so they are setup here. - * - * - The android support libraries make a lot of dependencies about the project - * two folders up from themselves, which we will have to provide for them. */ buildscript { @@ -23,33 +12,3 @@ buildscript { classpath 'com.android.tools.build:gradle:1.1.3' } } - -subprojects { - - // This is the hacky way which we force the subprojects to use the same build tools: - // http://stackoverflow.com/a/21032272 - afterEvaluate { - if ( it.hasProperty( 'android' ) ) { - android { - - // The android build task only lets you configure the buildToolsVersion once, so if - // we execute the closure below to configure our subprojects, it will fail when it - // hits the second subproject. Therefore, we will only do it once, and I guess the - // android plugin will re-use the existing value I set. - // https://android.googlesource.com/platform/tools/build/+/master/gradle/src/main/groovy/com/android/build/gradle/BaseExtension.groovy - try { - buildToolsVersion '22.0.1' - logger.info("Set buildToolsVersion to '22.0.1'") - } catch (GradleException e) { - logger.info("Tried to set the buildToolsVersion, however we were not allowed to: $e.message") - } - - // don't abort build on lint errors - // http://stackoverflow.com/a/25149514 - configure(android.lintOptions) { - abortOnError false - } - } - } - } -}