I have a WebComponent Composable that's implemented with the legacy view interop:
AndroidView(viewBlock = { webView })
. This will load most webpages, but it fails to load resource intensive iFrames such as an interactive elections map graphic.
I added the hardware acceleration tag to the app's Manifest, but still no luck. A log shows that the Fragment's rootview is hardware accelerated, but the Composable's AndroidView is not. The docs state that hardware acceleration is only possible through the Manifest's application or activity tags, or programmatically through the Window. I'm wondering if AndroidView doesn't support this yet if it isn't attached to the Activity or Window under the hood.
Has anyone else encountered difficulty with hardware acceleration with AndroidView interop? Code snippet in the thread.