博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
kotlin 插件更新到 1.2.41 程序出错 Please use kotlin-stdlib-jdk7 instead
阅读量:6152 次
发布时间:2019-06-21

本文共 1078 字,大约阅读时间需要 3 分钟。

buildscript {    ext.kotlin_version = '1.2.41'    repositories {        google()        jcenter()    }    dependencies {        classpath 'com.android.tools.build:gradle:3.1.2'        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"        // NOTE: Do not place your application dependencies here; they belong        // in the individual module build.gradle files    }}

C:\Users...\kotlin-stdlib-jre7-1.2.41.jar: kotlin-stdlib-jre7 is deprecated. Please use kotlin-stdlib-jdk7 instead

出错地方 module build.gradle

implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" 会显示已经过时

将 org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version 改为 org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version

并编译。

 

dependencies {    implementation fileTree(include: ['*.jar'], dir: 'libs')    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"    implementation 'com.android.support:appcompat-v7:27.1.1'    implementation 'com.android.support.constraint:constraint-layout:1.1.0'    implementation 'com.android.support:design:27.1.1'    }

转载地址:http://aywfa.baihongyu.com/

你可能感兴趣的文章
类斐波那契数列的奇妙性质
查看>>
下一步工作分配
查看>>
Response. AppendHeader使用大全及文件下载.net函数使用注意点(转载)
查看>>
Wait Functions
查看>>
jQuery最佳实践
查看>>
centos64i386下apache 403没有权限访问。
查看>>
jquery用法大全
查看>>
PC-BSD 9.2 发布,基于 FreeBSD 9.2
查看>>
网卡驱动程序之框架(一)
查看>>
css斜线
查看>>
Windows phone 8 学习笔记(3) 通信
查看>>
Revit API找到风管穿过的墙(当前文档和链接文档)
查看>>
Scroll Depth – 衡量页面滚动的 Google 分析插件
查看>>
Windows 8.1 应用再出发 - 视图状态的更新
查看>>
自己制作交叉编译工具链
查看>>
Qt Style Sheet实践(四):行文本编辑框QLineEdit及自动补全
查看>>
[物理学与PDEs]第3章习题1 只有一个非零分量的磁场
查看>>
深入浅出NodeJS——数据通信,NET模块运行机制
查看>>
onInterceptTouchEvent和onTouchEvent调用时序
查看>>
android防止内存溢出浅析
查看>>