kotlin outdated Kotlin runtime/update kotlin runtime

I solve this problem by 2 steps next:

1-

dependencies {

compile "org.jetbrains.kotlin:kotlin-stdlib:1.2.21"

}

Change the version of stdlib for your version num.

2-

dependencies {

    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.21"

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

Change the version of the plugin for your version num.

3-
sync

I solve this problem by 2 step next:

1-

dependencies {

compile "org.jetbrains.kotlin:kotlin-stdlib:1.2.21"

}

Change the version of stdlib for your version num.

2-

dependencies {

    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.21"

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

Change the version of the plugin for your version num.

3-
sync

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章