What can cause this error for class DrawableWrapper from the support lib?
DrawableWrapper
Caused by: java.lang.ClassNotFoundException: Didn\'t find class \"and
I started getting this exception in Android 5 and Android 4 users after removing com.android.support-v13 from my build.gradle file:
com.android.support-v13
build.gradle
configurations.all { exclude group: 'com.android.support', module: 'support-v13' }
I removed the above exclude configuration and no longer saw this crash.
exclude