Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Access denied finding property "vendor.debug.egl.swapinterval" I am keep getting this error in android studio when I run my app [closed]

I am getting this errors lots in lots. Here is the fraction of it.

10-17 18:21:33.518 6476-6503/royal.com.ocr E/libc: Access denied finding property "vendor.debug.egl.swapinterval" 10-17 18:21:41.614 6476-6503/royal.com.ocr E/libc: Access denied finding property "vendor.debug.prerotation.disable" 10-17 18:21:41.615 6476-6503/royal.com.ocr E/libc: Access denied finding property "vendor.debug.prerotation.disable" 10-17 18:21:41.615 6476-6503/royal.com.ocr E/libc: Access denied finding property "vendor.debug.prerotation.disable" 10-17 18:21:41.623 6476-6503/royal.com.ocr E/libc: Access denied finding property "vendor.debug.egl.changepixelformat" 10-17 18:21:41.656 6476-6503/royal.com.ocr E/libc: Access denied finding property "vendor.debug.egl.swapinterval" 10-17 18:21:41.682 6476-6503/royal.com.ocr E/libc: Access denied finding property "vendor.debug.egl.swapinterval" 10-17 18:21:42.965 6476-6503/royal.com.ocr E/libc: Access denied finding property "vendor.debug.egl.swapinterval" 10-17 18:21:42.972 6476-6503/royal.com.ocr E/libc: Access denied finding property "vendor.debug.egl.swapinterval" 10-17 18:21:42.993 6476-6503/royal.com.ocr E/libc: Access denied finding property "vendor.debug.egl.swapinterval" 10-17 18:21:43.010 6476-6503/royal.com.ocr E/libc: Access denied finding property "vendor.debug.egl.swapinterval" 10-17 18:21:43.023 6476-6503/royal.com.ocr E/libc: Access denied finding property "vendor.debug.egl.swapinterval" 10-17 18:21:43.036 6476-6503/royal.com.ocr E/libc: Access denied finding property "vendor.debug.egl.swapinterval" 10-17 18:21:43.054 6476-6503/royal.com.ocr E/libc: Access denied finding property "vendor.debug.egl.swapinterval" 
like image 522
Vishwa Ardeshna Avatar asked Oct 17 '18 13:10

Vishwa Ardeshna


1 Answers

You might be using Android Pie+, probably OnePlus6 or above.

There are few workarounds.

  1. Highlight part of the line in your logcat that you don't want to see, right click, then go for Fold lines like this.

  2. Exclude that tag (together with "RenderThread") in Android Studio logcat filter config using this regex: ^(?!(libc|RenderThread))

like image 146
theapache64 Avatar answered Oct 10 '22 00:10

theapache64