I was working on a project and this error suddenly appeared:
E/dalvikvm: Could not find class 'android.graphics.drawable.RippleDrawable', referenced from method android.support.v7.widget.AppCompatImageHelper.hasOverlappingRendering
I reverted the app to a previous version which was working, and the error persisted. i created a new project, with an empty activity and ran it on my device, the error persisted. how can i fix this?
There is nothing to fix. This is merely mentioning that your code (e.g., a library) has a reference to a class (android.graphics.drawable.RippleDrawable
) that is not available on your device. Most likely, your device is running Android 4.4 or older, as this class was introduced in Android 5.0.
This particular message comes up all the time, as our code (e.g., appcompat-v7
) often refers to classes that we would like to use on newer devices but can avoid on older devices.
So, just ignore it.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With