Skip to content Skip to sidebar Skip to footer

Error: Cannot Find Activitysplashbinding

I am trying to check that if user is logged on or not. If yes then show a specific view group otherwise show different view group. To check whether user is logged on or not I am fe

Solution 1:

If you are using gradle plugin 3.1.0 Canary 6 you need to add android.databinding.enableV2=true in your gradle.properties file

error: cannot find symbol class ActivitySplashBindingImpl

Try and add

  <data>
    <importtype="android.view.View" />

This is mentioned in the section LayoutDetails under import at https://developer.android.com/topic/libraries/data-binding/index.html

Post a Comment for "Error: Cannot Find Activitysplashbinding"