DslTabLayout icon indicating copy to clipboard operation
DslTabLayout copied to clipboard

Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.8.0, expected version is 1.6.0.

Open WDevaloper opened this issue 1 year ago • 4 comments

Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.8.0, expected version is 1.6.0.

WDevaloper avatar Aug 14 '23 03:08 WDevaloper

you need update kotlin to

gradle 8+

plugins {
  ...
  id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
  ...
}

gradle 8-

buildscript {
    dependencies {
        ...
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0"
        ...
    }
}

angcyo avatar Aug 14 '23 03:08 angcyo

没有别的办法吗?1.8.0需要升级 The 'kotlin-android-extensions' Gradle plugin is no longer supported

WDevaloper avatar Aug 14 '23 03:08 WDevaloper

复制源码到项目中.

angcyo avatar Aug 14 '23 07:08 angcyo

我kt-gradle-plugin1.5.31,本地导module, ktx降到1.3.1完美运行

XiaoRanLiu3119 avatar Aug 18 '23 09:08 XiaoRanLiu3119