Merge pull request #119 from NamanShergill/patch-1

Some changes to fix errors being thrown
This commit is contained in:
Matthew Smith 2019-06-11 07:35:23 -07:00 committed by GitHub
commit 922f0d06a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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: Edit your project-level build.gradle file to look like this:
buildscript { buildscript {
ext.kotlin_version = '1.2.31' ext.kotlin_version = '1.3.21'
... ...
dependencies { dependencies {
... ...
@ -48,7 +48,7 @@ Edit your app-level build.gradle file to look like this:
apply plugin: 'kotlin-android' apply plugin: 'kotlin-android'
... ...
dependencies { dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
... ...
} }