From 3ed414cf96604eb013cddf7b36fc9b9448e92b39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Fri, 17 Apr 2015 11:45:49 +0200 Subject: [PATCH] Don't use + in gradle deps to make the build reproducible 20.0.+ equals 20.0.0 since there wasn't a 20.0.1 --- F-Droid/build.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/F-Droid/build.gradle b/F-Droid/build.gradle index 4a46cfe2a..098cced00 100644 --- a/F-Droid/build.gradle +++ b/F-Droid/build.gradle @@ -16,9 +16,9 @@ if ( !hasProperty( 'sourceDeps' ) ) { dependencies { - compile 'com.android.support:support-v4:20.0.+', - 'com.android.support:appcompat-v7:20.0.+', - 'com.android.support:support-annotations:20.0.+', + compile 'com.android.support:support-v4:20.0.0', + 'com.android.support:appcompat-v7:20.0.0', + 'com.android.support:support-annotations:20.0.0', 'org.thoughtcrime.ssl.pinning:AndroidPinning:1.0.0', 'com.nostra13.universalimageloader:universal-image-loader:1.9.3', @@ -80,9 +80,9 @@ if ( !hasProperty( 'sourceDeps' ) ) { // 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:20.0.+', - 'com.android.support:appcompat-v7:20.0.+', - 'com.android.support:support-annotations:20.0.+' + compile 'com.android.support:support-v4:20.0.0', + 'com.android.support:appcompat-v7:20.0.0', + 'com.android.support:support-annotations:20.0.0' androidTestCompile 'commons-io:commons-io:2.2' }