Buenas tardes tengo este error al compilar.
Error:(3, 58) No resource found that matches the given name (at 'drawable' with value '@drawable/switch_go')
Error:(4, 59) No resource found that matches the given name (at 'drawable' with value '@drawable/switch_end').
Es un drawable que acabo de definir y no se como corregirlo me pueden ayudar.
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="
http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:drawable="@drawable/switch_go" />
<item android:state_checked="false" android:drawable="@drawable/switch_end" />
</selector>
Gracias