美文网首页
异常之:Static interface methods are

异常之:Static interface methods are

作者: 追风之猪 | 来源:发表于2019-06-12 00:38 被阅读0次

    Error: Static interface methods are only supported starting with Android N (--min-api 24): okhttp3.Request okhttp3.Authenticator.lambda$static$0(okhttp3.Route, okhttp3.Response)

    原因:lambda的支持问题

    错误解决方案:

    gradle文件中:

    android标签内添加

    compileOptions {

        sourceCompatibility JavaVersion.VERSION_1_8

        targetCompatibility JavaVersion.VERSION_1_8

    }

    相关文章

      网友评论

          本文标题:异常之:Static interface methods are

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