Android 10 + Capacitor打包浏览器,默认换回了System Webview,导致WebGL卡顿
> On Android 5 and 6, Capacitor uses the Android System WebView. On Android 7+, Google Chrome is used.
> the Android 10+ using the System WebView again
解决方案
AndroidManifest.xml
android:largeHeap="true"
android:immersive="true"
Try setting android:largeHeap="true" in your AndroidManifest.xml - Does that make any difference for you? It seemed to make an improvement for us. We also added android:immersive="true" (fits our app) and android:hardwareAccelerated="true" (defaults to true, but... just in case.)