ClassNotFoundException: Didn't find class “android.databinding.DataBinderMapper”

后端 未结 9 1814
长发绾君心
长发绾君心 2020-12-11 14:23

I am using android\'s data binding library for views in a library project

i have added the following line in my root gradle file

classpath \'         


        
9条回答
  •  粉色の甜心
    2020-12-11 15:22

    Make sure that ALL your modules that use DataBinding have it enabled. This was the reason I got that exception.

    android {
        ....
        dataBinding {
            enabled = true
        }
    }
    

提交回复
热议问题