AS 支持 Java 8 时遇到Could not find method jackOptions()

根据最新文档
将 Android Studio 升级至 3.0.0 或更高版本,去掉下面的配置

defaultConfig.jackOptions.enabled = true
或者
jackOptions {
            enabled true
        }

所以整体配置如下:

android {
  ...
  // Configure only for each module that uses Java 8
  // language features (either in its source code or
  // through dependencies).
  compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
  }
}
    原文作者:陆三金
    原文地址: https://www.jianshu.com/p/b755cd3c9cb3
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞