美文网首页
Android Studio lambda表达式的使用

Android Studio lambda表达式的使用

作者: 牧区叔叔 | 来源:发表于2020-09-21 16:07 被阅读0次

    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'
    

    相关文章

      网友评论

          本文标题:Android Studio lambda表达式的使用

          本文链接:https://www.haomeiwen.com/subject/vfdmyktx.html