カテゴリー:
Kotlin
閲覧数:416 配信日:2018-05-06 13:14
手順
1.(Project:[projectName])build.gradleファイルを開く
2.ext.kotlin_version = 'x.x.x'を探して、x.x.xを現在のKotlinプラグインバージョンへ変更する
対応例
修正前
▼build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.2.40'
repositories {
google()
jcenter()
}
修正後
▼build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.2.41'
repositories {
google()
jcenter()
}
Outdated Kotlin Runtime warning in Android Studio