Pobiera następujące ostrzeżenie podczas budowania projektu
DSL element 'android.dataBinding.enabled' is obsolete and has been replaced with 'android.buildFeatures.dataBinding'.
ja używam Android Studio Canary 6
Pobiera następujące ostrzeżenie podczas budowania projektu
DSL element 'android.dataBinding.enabled' is obsolete and has been replaced with 'android.buildFeatures.dataBinding'.
ja używam Android Studio Canary 6
Odpowiedzi:
Zaczyna się od Android Gradle Plugin 4.0.0-alpha05
nowego bloku o nazwiebuildFeatures
aby włączyć funkcje kompilacji.
Aby włączyć wiązanie danych z nową wtyczką AGP, wykonaj następujące czynności
android {
buildFeatures{
dataBinding = true
}
}
Odniesienie: https://developer.android.com/studio/preview/features#agp-4-0-0