From 7d014eda4f0a0fbc82f03fe58a64d03f5b946879 Mon Sep 17 00:00:00 2001 From: Alex Baker Date: Mon, 29 Oct 2018 08:06:45 -0500 Subject: [PATCH] Add gradle versions plugin --- build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index 04ed8567c..f71c8fbda 100644 --- a/build.gradle +++ b/build.gradle @@ -1,3 +1,5 @@ +apply plugin: "com.github.ben-manes.versions" + wrapper { gradleVersion = "4.9" distributionType = Wrapper.DistributionType.ALL @@ -16,5 +18,6 @@ buildscript { classpath 'com.android.tools.build:gradle:3.2.1' classpath 'com.google.gms:google-services:4.0.2' classpath 'io.fabric.tools:gradle:1.25.4' + classpath 'com.github.ben-manes:gradle-versions-plugin:0.20.0' } }