From 8ff0039be41e51e71e42553ff558640a7b74ec13 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 11 Oct 2018 21:09:45 +0530 Subject: Update gradle and external dependencies (#429) * Update gradle and external dependencies - Switch away from deprecated compile directive - Remove explicit buildToolsVersion, is defined by the gradle plugin now - Fix build in SelectFolderActivity Signed-off-by: Harsh Shandilya * Upgrade gradle plugin and wrapper to latest alpha Signed-off-by: Harsh Shandilya * Don't use alpha gradle plugin Signed-off-by: Harsh Shandilya --- build.gradle | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index d5d573be..d0519e58 100644 --- a/build.gradle +++ b/build.gradle @@ -1,17 +1,14 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.1.51' + ext.kotlin_version = '1.2.71' repositories { + google() jcenter() mavenCentral() - maven { - url "https://maven.google.com" - } - google() } dependencies { - classpath 'com.android.tools.build:gradle:3.1.4' + classpath 'com.android.tools.build:gradle:3.2.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong @@ -21,6 +18,7 @@ buildscript { allprojects { repositories { + google() jcenter() mavenCentral() } -- cgit v1.2.3