'ERROR: The GPU does not support this version of OpenGL ES, try an older version in flutter

I/Adreno  (21484): ERROR: The GPU does not support this version of OpenGL ES, try an older version
    D/skia    (21484): Shader compilation error
    D/skia    (21484): ------------------------
    D/skia    (21484):    1 #version 310 es
    D/skia    (21484):    2 
    D/skia    (21484):    3 in highp vec4 sk_FragCoord_Workaround;
    D/skia    (21484):    4 precision mediump float;
    D/skia    (21484):    5 precision mediump sampler2D;
    D/skia    (21484):    6 out mediump vec4 sk_FragColor;
    D/skia    (21484):    7 uniform sampler2D uTextureSampler_0_Stage0;
    D/skia    (21484):    8 in highp vec2 vTextureCoords_Stage0;
    D/skia    (21484):    9 flat in highp int vTexIndex_Stage0;
    D/skia    (21484):   10 in mediump vec4 vinColor_Stage0;
    D/skia    (21484):   11 void main() {
    D/skia    (21484):   12     mediump vec4 outputColor_Stage0;
    D/skia    (21484):   13     mediump vec4 outputCoverage_Stage0;
    D/skia    (21484):   14     {
    D/skia    (21484):   15         outputColor_Stage0 = vinColor_Stage0;
    D/skia    (21484):   16         mediump vec4 texColor;
    D/skia    (21484):   17         {
    D/skia    (21484):   18             texColor = texture(uTextureSampler_0_Stage0, vTextureCoords_Stage0);
    D/skia    (21484):   19         }
    D/skia    (21484):   20         outputCoverage_Stage0 = texColor;
    D/skia    (21484):   21     }
    D/skia    (21484):   22     {
    D/skia    (21484):   23         sk_FragColor = outputColor_Stage0 * outputCoverage_Stage0;
    D/skia    (21484):   24     }
    D/skia    (21484):   25 }
    D/skia    (21484):   26 
    D/skia    (21484): Errors:
    D/skia    (21484): ERROR: The GPU does not support this version of OpenGL ES, try an older version

Face this issue in Flutter Android studio when install in device, some install successfully and works fine, but some installed successfully but show black screen.

Please guide, Thanks

Device Info in attach image

Device Info



Solution 1:[1]

The issue seems to occur on Flutter 1.9, but has been resolved since 1.10 as mentioned in this GitHub issue thread. Updating to the latest version of Flutter SDK should fix the issue.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Omatt