Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android : GL error while resizing: 0x506 (ignored) [closed]

I am getting below error continuously when I am using any Android Emulator.

"GL error while resizing: 0x506 (ignored)"

Do anyone has any idea how to resolve this? Does it can impact my Espresso UI test case as after this I am not able to run my espresso test case. My test cast get stuck as soon as it launch and try to click on a button with following error

android.support.test.espresso.AppNotIdleException: Looped for 2 iterations over 60 SECONDS. The following Idle Conditions failed .
like image 504
Krishnakant Avatar asked Sep 19 '16 13:09

Krishnakant


1 Answers

I was having the same problem. I have 1366x768 resolution on my laptop and was using 1080x1920 resolution on Android emulator. Lowering it to 480x800 fixed the GL error spam so I guess that error comes if your screen resolution is smaller than Android emulator resolution.

like image 98
Alexander Avatar answered Oct 18 '22 23:10

Alexander