I am developing an android app (Phonegap) and whenever I am testing on the device that is plugged in I cannot see the error on the log because of OpenGLRenderer prepareDirty populating the log. It's very annoying, how to get rid of it?
Device: Lenovo Tab A7
see screenshot:
<application android:hardwareAccelerated="false" ...>
or for the activity
<activity android:hardwareAccelerated="false" />
After a fair amount of google research, turning off hardware acceleration was the only workaround found. Set the following in your manifest for the entire application
to do custome log message filter
you can set custome filter in android studio.
and add follow tag and your package name
^(?!.(OpenGLRenderer)).$
where OpenGLRenderer can be replace with the tag that you want to ignore
like ^(?!.(youctag1|tag2|tag3)).$
if you are using Android Studio, you can get rid of those annoying messages by adding a filter configuration
with :
Log Tag:
^((?!(?:OpenGLRenderer|GraphicBuffer|MaliEGL)).)*$
and don't forget to set your package name.
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