What can cause this error for class DrawableWrapper from the support lib?
DrawableWrapper
Caused by: java.lang.ClassNotFoundException: Didn\'t find class \"and
import android.support.v7.graphics.drawable.DrawableWrapper;
or
import android.support.v4.graphics.drawable.WrappedDrawable; will help.
import android.support.v4.graphics.drawable.WrappedDrawable;
Also, when you use Drawable inner = ((WrappedDrawable) drawable).getWrappedDrawable();, you can add @SuppressLint("RestrictedApi") above your method.
Drawable inner = ((WrappedDrawable) drawable).getWrappedDrawable();
@SuppressLint("RestrictedApi")