I have Custom View in Nested Package default package : com.example.testing I created a custom class view in the subpackage like com.example.testing.login.pinview and inserted in layout like below
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.example.testing.login.pinview
android:id="@+id/testingview"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</RelativeLayout>
</layout>
After rebuilding the android project i am getting error
error: package login does not exist
Even i already enabled databinding in gradle
Please anyone help i stuck from 2 days