閉じる

WARNING: DSL element ‘android.dataBinding.enabled’ is obsolete and has been replaced with ‘android.buildFeatures.dataBinding’.

データバインディングを有効にする構文が変更になったので対応が必要。
変更前

android {
	dataBinding {
		enabled = true
	}
}

変更後

android {
	buildFeatures {
		dataBinding = true
	}
}

AGPのメジャーバージョンアップで削除される前に対応しておくのが吉。<「It will be removed in version 5.0 of the Android Gradle plugin.」

コメントを残す

メールアドレスが公開されることはありません。必須項目には印がついています *

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)