Some changes to fix errors being thrown

This commit is contained in:
Naman Shergill 2019-05-31 16:15:50 +05:30 committed by GitHub
parent 8455f159f6
commit c8966b4515
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:
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"
...
}