1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Android - Kotlin】"Some kotlin libraries attached to this project have unsupported format. Please update the libraries or the plugin"解決した

Last updated at Posted at 2016-02-08

ある日、以下のようなエラーが出た。

Some kotlin libraries attached to this project have unsupported format. Please update the libraries or the plugin

アップデートしてくださいと言われても、Kotlinのバージョンは最新の1.0.0-rc-1036(2016/2/8時点)。。。
なんで?

とりあえずbuild.gradleを覗いてみると以下のような記述がある。

build.gradle
...

buildscript {
    ext.kotlin_version = '1.0.0-beta-3594'
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

...

あ、ext.kotlin_versionが違う。。。
というわけで以下のように修正。

ext.kotlin_version = '1.0.0-rc-1036'

解決した。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?