31

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"
peterh
  • 11,875
  • 18
  • 85
  • 108
Vishwa Ardeshna
  • 437
  • 1
  • 4
  • 7
  • 1
    You may have to follow [this](https://github.com/aagarwal1012/Image-Steganography-Library-Android/issues/1) – Santhosh Joseph Oct 17 '18 at 13:38
  • I saw this stream of access errors on my OnePlus6T device in Android Studio as well. My device was running OxygenOS version 9. Upgrading Oxygen to v10.3.8 eliminated the errors. – RichR Feb 24 '21 at 18:39

5 Answers5

37

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))

Mark Rotteveel
  • 100,966
  • 191
  • 140
  • 197
theapache64
  • 10,926
  • 9
  • 65
  • 108
4

Add this line in your manifest file.

<uses-library android:name="org.apache.http.legacy" android:required="false"/>
Kaushal Gosaliya
  • 421
  • 7
  • 16
3

This is due to some rendering bug comes with API 28. Check your build.gradle file in the project folder($PROJECT_FOLDER/android/app/). If compileSdkVersion and targetSdkVersion is set to 28 . Please change it to 27 .I

Simran Singh
  • 2,323
  • 12
  • 21
1

E/libc: Access denied finding property "vendor.debug.egl.swapinterval"

this is the Access denied finding property type error.

which is probably caused by previous related warning like this:

type=1400 audit(xxx): avc: denied { xxx } for name=xxx dev=xxx ino=xxx scontext=xxx tcontext=xxx tclass=xxx permissive=0

how to fix avc: denied error ?

crifan
  • 12,947
  • 1
  • 71
  • 56
0

Try this one:

flutter run --enable-software-rendering

Working for me!

Dinesh R Rajput
  • 732
  • 8
  • 22