From c66388cdb990ee479323bb0ee901b29787d36fe9 Mon Sep 17 00:00:00 2001 From: Erisu Date: Sat, 18 Jan 2020 14:37:33 +0900 Subject: [PATCH] chore: bump kotlin to 1.3.50 --- bin/templates/project/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/templates/project/build.gradle b/bin/templates/project/build.gradle index 411e1a4415..d2ea012217 100644 --- a/bin/templates/project/build.gradle +++ b/bin/templates/project/build.gradle @@ -19,16 +19,16 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { + ext.kotlin_version = '1.3.50' repositories { google() jcenter() } - dependencies { + classpath 'com.android.tools.build:gradle:3.3.0' + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files - - classpath 'com.android.tools.build:gradle:3.3.0' } }