我正在实施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
}
}