java.lang.IllegalStateException Butterknife
I am facing java.lang.IllegalStateException Required view 'splash_text' but I have included it in the xml. I am using Butterknife to Bind the views. compile 'com.jakewharton:butterknife:7.0.1' Xml : <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@android:color/holo_orange_light"> <com.CustomTextView android:id="@+id/splash_text" android:layout_width="match_parent" android:layout_height="wrap_content" /> <