DataBinderMapperImpl class not found

Hello.

I am trying to implement the SendBird UI Kit in my application and I keep having this error:
java.lang.NoClassDefFoundError: Failed resolution of: Landroidx/databinding/DataBinderMapperImpl;

It happens when I try to open the ChannelListFragment

I already use view binding in my app, so that is even weirder, here is a snippet of my build.gradle file.

plugins {
    ...
    id("kotlin-kapt")
    ...
}

android {
    compileSdk = 30
    ...
    buildFeatures {
        viewBinding = true
    }
}

dependencies {
    ...
    implementation("com.sendbird.sdk:uikit:2.2.2")
}

Hi @andresuggestic Thank you for asking us. You have to dataBinding instead of viewBinding.
Have a nice day!