首页 > 其他分享 >IDEA编译报错:Error:Kotlin: Module was compiled with an incompatible version of Kotlin

IDEA编译报错:Error:Kotlin: Module was compiled with an incompatible version of Kotlin

时间:2024-01-30 09:03:40浏览次数:34  
标签:1.5 incompatible Kotlin 31 version 报错 stdlib kotlin

问题

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

Warning:Kotlin: Runtime JAR files in the classpath should have the same version. These files were found in the classpath:
    C:/Users/xxx/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.5.31/kotlin-stdlib-jdk8-1.5.31.jar (version 1.5)
    C:/Users/xxx/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.5.31/kotlin-stdlib-jdk7-1.5.31.jar (version 1.5)
    C:/Users/xxx/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib-common/1.5.31/kotlin-stdlib-common-1.5.31.jar (version 1.5)
    C:/Users/xxx/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.6.20/kotlin-stdlib-1.6.20.jar (version 1.6)
Warning:Kotlin: Some runtime JAR files in the classpath have an incompatible version. Consider removing them from the classpath

IDEA莫名其妙出现此问题,Build->Rebuild Project 就好了,具体原因未知。

参考

Idea编译项目,突然报错:Error:Kotlin: Module was compiled with an incompatible version of Kotlin.

标签:1.5,incompatible,Kotlin,31,version,报错,stdlib,kotlin
From: https://www.cnblogs.com/strongmore/p/17973830

相关文章

  • vue安装node-sass sass-loader 报错
    vue安装node-sass  sass-loader报错 主要的原因是因为node的版本 和  node-sass  sass-loader 不匹配导致的报错node-sass版本和sass-loader版本对应 具体查看这个链接   https://www.npmjs.com/package/node-sass拿我当前项目举例  我node版本是16......
  • Kotlin扩展函数原理解析
    一、扩展函数扩展函数可以方便地给现有类增加属性和方法而不改动类地代码。二、原理funString.addTo(s:String):String{returnthis+s}反编译:@Metadata(mv={1,6,0},k=2,d1={"\u0000\n\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\u001a\u......
  • 关于ufw 报错ip6tables v1.6.1: can't initialize ip6tables table `filter': Table d
    背景在ubuntuarm版本上安装ufw,设置规则时报错发现报错ip6tablesv1.6.1:can'tinitializeip6tablestable`filter':Tabledoesnotexist(doyouneedtoinsmod?)Perhapsip6tablesoryourkernelneedstobeupgraded.解决办法一.升级ip6tables二.禁用i......
  • linux centos yum 报错[Errno 256]No more mirrors to try 解决方法
    解决方案大致有三种一、更新yum二、若不行,可能是因为DNS不稳定吧,因为yum安装时会从三个”repo源“(base,extras,updates)随机获取地址背景我使用yum方式安装软件时,比如zabbix这种软件,我们在安装时一般都是直接到zabbix官网,按照官方的步骤进行安装,但是有一个问题,官方的服务器不在国......
  • MySQL数据库连接报错1130 - Host 'xxx' is not allowed to connect to this MySQL ser
    目录现象描述原因分析解决办法:本文解决MySQL数据库连接报错1130-Host'xxx'isnotallowedtoconnecttothisMySQLserver。返回目录返回目录现象描述MySQL数据库,使用Navicat、root用户连接报错:原因分析这个报错原因是权限问题,需要修改连接权限。进入mysql......
  • Encoding.GetEncoding("GBK"); 报错
    在.NETFramework4.7.2中,Encoding.GetEncoding("GBK")方法仍然可以使用,并返回GBK编码的编码器。但是,在.NETCore3.0及更高版本中,Encoding.GetEncoding("GBK")方法已被弃用,并且不再支持GBK编码。解决使用Encoding.GetEncoding(936)方法来获取GBK编码的编码器使......
  • Rust学习之Diesel setup报错解决
    Dieselsetup报错解决Diesel是一个安全、可扩展的RustORM和查询生成器。Diesel是Rust中与数据库交互最高效的方式,因为它对查询进行了安全且可组合的抽象。1.报错信息diesel_demoonmaster[?]via......
  • 创建Vue项目,报错spawn yarn ENOENT
    1.使用vue创建项目的时候,报错Error:spawnyarnENOENT1.1用户自己设置了默认的包管理yarn1.2没有安装yarn解决方式1:打开C盘,在C盘里,打开users(用户名)的文件夹,然后在右侧搜索名为.vuerc的文件修改.vuerc文件解决方式2:没有安装yarn,那么直接输入命令npmin......
  • mysql连接报错:The server time zone value '�й���׼ʱ��'
    java.sql.SQLException:Theservertimezonevalue'�й���׼ʱ��'isunrecognizedorrepresentsmorethanonetimezone.YoumustconfigureeithertheserverorJDBCdriver(viatheserverTimezoneconfigurationproperty)touseamorespecifctimez......
  • 创建onepose虚拟环境时一个看似复杂的报错的解决
    这个错误看似先是mdl不应该为None,但是实际却为None,但是后面有一句:在处理这个异常时,出现了另一个异常当出现这个情况时,实际上应该先处理后面这个异常,这个是gpt告诉我的(见下图):后面这个异常报的是libcublas.so.11有问题,看似和我之前建立pixel-perfect-sfm的conda虚拟环境时ln-......