Disable enableHardwareBufferRenderingTarget (#46425)
* Causing flickering in web views
* Follow up of cl/569435819 for Google to unblock the rolls
diff --git a/shell/platform/android/io/flutter/plugin/platform/PlatformViewsController.java b/shell/platform/android/io/flutter/plugin/platform/PlatformViewsController.java
index 0e7ad70..b5559a3 100644
--- a/shell/platform/android/io/flutter/plugin/platform/PlatformViewsController.java
+++ b/shell/platform/android/io/flutter/plugin/platform/PlatformViewsController.java
@@ -147,7 +147,7 @@
// Whether software rendering is used.
private boolean usesSoftwareRendering = false;
- private static boolean enableHardwareBufferRenderingTarget = true;
+ private static boolean enableHardwareBufferRenderingTarget = false;
private final PlatformViewsChannel.PlatformViewsHandler channelHandler =
new PlatformViewsChannel.PlatformViewsHandler() {