JDK版本设置到1.8才支持Lambda表达式
image.png设置过程
1、在项目gradle中的 dependencies 添加 classpath'me.tatarka:gradle-retrolambda:3.2.5'
dependencies {
classpath "com.android.tools.build:gradle:4.0.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" //解决Plugin with id 'kotlin-android' not found. 到项目出的问题1
classpath'me.tatarka:gradle-retrolambda:3.2.5' //lambda表达式
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
2、在APP的gradle添加依赖
//应用retrolambda插件
implementation 'cn.jzvd:jiaozivideoplayer:7.3.0'//之后变异中这个也报错了,报错时候在注解就行
apply plugin:'me.tatarka.retrolambda'
网友评论