Outdated Kotlin Runtime warning in Android Studio

前端 未结 15 1641
温柔的废话
温柔的废话 2020-11-29 19:43

After downloaded and installed latest Kotlin plugin I have Outdated Kotlin Runtime warning from Android Studio that telling me:

Your

15条回答
  •  日久生厌
    2020-11-29 20:37

    As of March 8, 2019 the current kotlin version is '1.3.21'

    Under build.gradle

    buildscript {
       ext.kotlin_version = '1.3.21'
       repositories {
          google()
          jcenter()
       }
       dependencies {
          classpath 'com.android.tools.build:gradle:3.3.2'
          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
    }
    

    cheers

提交回复
热议问题