From c8966b4515b7ae876bd51d5631622e630d679c47 Mon Sep 17 00:00:00 2001 From: Naman Shergill <33877135+NamanShergill@users.noreply.github.com> Date: Fri, 31 May 2019 16:15:50 +0530 Subject: [PATCH] Some changes to fix errors being thrown --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0140920..5641fed 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ For Android, you must do the following before you can use the plugin: Edit your project-level build.gradle file to look like this: buildscript { - ext.kotlin_version = '1.2.31' + ext.kotlin_version = '1.3.21' ... dependencies { ... @@ -48,7 +48,7 @@ Edit your app-level build.gradle file to look like this: apply plugin: 'kotlin-android' ... dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" ... }