From 98e675e00bc38e96ec1c0cefa1cb279c4f0d7218 Mon Sep 17 00:00:00 2001 From: Niko Strijbol Date: Sun, 18 Dec 2016 15:36:39 +0100 Subject: [PATCH 1/3] Unjack building since it causes issues --- app/build.gradle | 8 ++++---- build.gradle | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 9523b5912..cd41fe55f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,6 +1,6 @@ apply plugin: 'com.android.application' //Enable this when disabling jack -//apply plugin: 'me.tatarka.retrolambda' +apply plugin: 'me.tatarka.retrolambda' apply plugin: 'com.cookpad.android.licensetools' android { @@ -17,9 +17,9 @@ android { //Enable jack support //When disabling jack, DON'T forget to enable retrolambda - jackOptions { - enabled true - } +// jackOptions { +// enabled true +// } //Load the API keys from the file "secrets.properties". Properties props = new Properties() diff --git a/build.gradle b/build.gradle index bf4d2e9ab..b76359da6 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,7 @@ buildscript { classpath 'com.cookpad.android.licensetools:license-tools-plugin:0.17.0' //When disabling jack, uncomment this - //classpath 'me.tatarka:gradle-retrolambda:3.4.0' + classpath 'me.tatarka:gradle-retrolambda:3.4.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files From aa4f6c92400bba9464ea68b25bf9ab7c43e362f2 Mon Sep 17 00:00:00 2001 From: Niko Strijbol Date: Sun, 18 Dec 2016 15:36:51 +0100 Subject: [PATCH 2/3] Update support libraries --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index cd41fe55f..0ecebb2fc 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -73,7 +73,7 @@ project.afterEvaluate { } //The support library version -final SUPPORT_LIBRARY_VERSION = '25.0.1' +final SUPPORT_LIBRARY_VERSION = '25.1.0' dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') From 1090a5a2fde7175bff6c34510cbd7eb15a4860da Mon Sep 17 00:00:00 2001 From: Niko Strijbol Date: Sun, 18 Dec 2016 15:49:30 +0100 Subject: [PATCH 3/3] Fix dependency conflicts --- firebasenoop/build.gradle | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/firebasenoop/build.gradle b/firebasenoop/build.gradle index b6e5cb309..b1d0c5a03 100644 --- a/firebasenoop/build.gradle +++ b/firebasenoop/build.gradle @@ -3,10 +3,18 @@ apply plugin: 'com.android.library' android { compileSdkVersion 25 buildToolsVersion "25.0.2" + + defaultConfig { + minSdkVersion 9 + versionName "10.0.1" + versionCode 1001 + } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) - compile 'com.google.firebase:firebase-core:10.0.1' + compile ('com.google.firebase:firebase-core:10.0.1') { + exclude module:'support-v4' + } } \ No newline at end of file