美文网首页
修复flutter Android 编译中配置项 compile

修复flutter Android 编译中配置项 compile

作者: 挥笔者 | 来源:发表于2021-03-02 20:57 被阅读0次

    Default interface methods are only supported starting with Android N (--min-api 24): void androidx.lifecycle.DefaultLifecycleObserver.onCreate(androidx.lifecycle.LifecycleOwner)

    编译版本报错

    在app.gradle中添加以下代码

    compileOptions{

    //        coreLibraryDesugaringEnabled true

            sourceCompatibility JavaVersion.VERSION_1_8

            targetCompatibility JavaVersion.VERSION_1_8

        }

    相关文章

      网友评论

          本文标题:修复flutter Android 编译中配置项 compile

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