我正在实现DataBinding,它运行完美,但是不允许我使用jackOptions。在构建时抛出Data Binding does not support Jack builds yet错误。

这是我的build.gradle

android {


   defaultConfig {
       ...

       dataBinding {
           enabled true
       }

       jackOptions {
           enabled true
       }
   }

   compileOptions {
       sourceCompatibility JavaVersion.VERSION_1_8
       targetCompatibility JavaVersion.VERSION_1_8
   }
}

最佳答案

从yigit的评论中可以明显看出,此功能仍在开发中,因为他和George是DataBinding的项目成员。



我还发现问题已经报告Issue 210615: Databinding with Jack compiler

更新

2.3 will allow you to use data binding with jack but it still has limitations

10-08 18:20