本文介绍了Kotlin错误:找不到org.jetbrains.kotlin:kotlin-stdlib-jre7:1.0.7的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我将Kotlin插件安装到我的应用程序(v1.1.1-release-Studio2.2-1)中,然后选择在项目中配置Kotlin",选择了1.0.7的编译器和运行时版本. Kotlin更新了我的Gradle文件.现在,当我尝试构建时,我得到:

I installed the Kotlin plugin into my app (v. v1.1.1-release-Studio2.2-1) and then selected "Configure Kotlin in Project" I selected compiler and runtime version of 1.0.7. Kotlin updated my Gradle files. Now when I try to build in I get:

MyApplication:app:unspecified

MyApplication:app:unspecified

我不确定我在这里想念什么.

I'm not sure what I'm missing here.

推荐答案

替换

implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

由于带有jre的版本是绝对版本,因此只需替换并同步项目

Since the version with jre is absolute , just replace and sync the project

官方文档此处感谢您提供的链接@ ROMANARMY

Official Documentation here Thanks for the link @ ROMANARMY

快乐编码:)

这篇关于Kotlin错误:找不到org.jetbrains.kotlin:kotlin-stdlib-jre7:1.0.7的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-03 20:00