From f0481ffa145d6af0f7ffb66b14461c7f4fa86870 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Thu, 20 Aug 2015 10:35:18 -0700 Subject: [PATCH] Support libs will never be built from source We can't rely on their plugin versions to be compatible with ours. Besides, they require tons of Android SDK targets to be installed to build. They are already bundled with the SDK, so you can build them as part of the SDK from source if you want to. --- F-Droid/build.gradle | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/F-Droid/build.gradle b/F-Droid/build.gradle index b83624794..ad8b1f23f 100644 --- a/F-Droid/build.gradle +++ b/F-Droid/build.gradle @@ -70,18 +70,6 @@ if ( !hasProperty( 'sourceDeps' ) ) { exclude module: 'support-v4' } - // Until the android team updates the gradle plugin version from 0.10.0 to - // a newer version, we can't build this from source with our gradle version - // of 1.0.0. They use API's which have been moved in the newer plugin. - // So yes, this is a little annoying that our "source dependencies" include - // a bunch of binaries from jcenter - but the ant build file (which is the - // one used to build F-Droid which is distributed on https://f-droid.org - // builds these from source - well - not support-v4). - // - // If the android team gets the build script working with the newer plugin, - // then you can find the relevant portions of the ../build.gradle file that - // include magic required to make it work at around about the v0.78 git tag. - // They have since been removed to clean up the build file. compile 'com.android.support:support-v4:22.2.1', 'com.android.support:appcompat-v7:22.2.1', 'com.android.support:support-annotations:22.2.1'