最近、動的機能モジュールに取り組んでいますが、その中でデータバインディングがまったく機能せず、クラスが見つからないというランタイムエラーが発生しています。
apply plugin: "com.android.dynamic-feature"
android {
compileSdkVersion 29
buildToolsVersion "30.0.2"
dataBinding {
enabled = true
}
defaultConfig {
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.0"
vectorDrawables.useSupportLibrary = true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation project(":app")
implementation 'org.jetbrains:annotations:16.0.1'
implementation 'com.jakewharton.timber:timber:4.7.1'
}
機能モジュール内でデータバインディングを有効にする方法を教えてください。