Data Binding Android - Type parameter T has incompatible upper bounds : ViewDataBinding and MainActivity

后端 未结 16 1576
伪装坚强ぢ
伪装坚强ぢ 2020-12-11 00:27

I am using Android Studio 2.0 Preview 4. I\'m using Android SDK tools 25 rc1. This error persists no matter how many times I clean / rebuild project. File->Invalidate Caches

16条回答
  •  甜味超标
    2020-12-11 00:51

    in top level Build.Gradle file use gradle 1.5.0 or above

     dependencies {
        classpath 'com.android.tools.build:gradle:1.5.0'
    }
    

    if it is lower than 1.5.0 then use this one also in top level gradle file

            classpath "com.android.databinding:dataBinder:1.0-rc4"
    

提交回复
热议问题