美文网首页
Error:Jack is required to suppo

Error:Jack is required to suppo

作者: 冷鸢J | 来源:发表于2017-08-10 10:33 被阅读0次

问题描述:Error:Jack is required to support java 8 language features;由于java8才有lambda表达式的支持,所以需要配置支持java1.8

解决方法:

defaultConfig {

          jackOptions{

           enabled true

          }

}

compileOptions {

          sourceCompatibilityJavaVersion.VERSION_1_8

          targetCompatibilityJavaVersion.VERSION_1_8

不可以的话修改为:

          targetCompatibility1.8

          sourceCompatibility1.8

}

相关文章

网友评论

      本文标题: Error:Jack is required to suppo

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