I am new to eclipse and receiving this error
error: no resource found that matches the given name (at 'drawable' with value '@drawable/ common_google_signin_btn_icon_dark_disabled').
Here is my common_google_signin_btn_icon_dark.xml file
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_enabled="false"
android:drawable="@drawable/common_google_signin_btn_icon_dark_disabled" />
<item
android:state_pressed="true"
android:drawable="@drawable/common_google_signin_btn_icon_dark_pressed" />
<item
android:state_focused="true"
android:drawable="@drawable/common_google_signin_btn_icon_dark_focused" />
<item
android:drawable="@drawable/common_google_signin_btn_icon_dark_normal" />
</selector>
Any help would be appreciated thanks