From 2257e00d4169f7b5ce3facdd6f7bc17618bc39b7 Mon Sep 17 00:00:00 2001 From: Izzy Oji Date: Tue, 27 Nov 2018 19:01:26 -0500 Subject: [PATCH] Updating Apollo from 0.5.0 to 1.0.0-alpha3. --- app/build.gradle | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 876e228b13..b71d79faf6 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -171,12 +171,14 @@ buildscript { maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } } dependencies { - classpath 'com.apollographql.apollo:apollo-gradle-plugin:0.5.0' + classpath 'com.apollographql.apollo:apollo-gradle-plugin:1.0.1-SNAPSHOT' } } apollo { - customTypeMapping['Email'] = "java.lang.String" + customTypeMapping = [ + "Email" : "java.lang.String" + ] } afterEvaluate { @@ -206,7 +208,7 @@ repositories { } // library versions -final apollo = "0.5.0" +final apollo = "1.0.0-alpha3" final auto_parcel_version = "0.3.1" final butterknife_version = "7.0.1" final constraint_layout_version = "1.1.0"