Open pkreissel opened 1 year ago
I am having a similar issue when end scrolling on the view. Even the crash report from Crashlytics is not helpful.
Although @pkreissel 's fix is working. The way I implemented it is:
const renderers: CustomTagRendererRecord = {
iframe: (props) => (
<View renderToHardwareTextureAndroid={true}>
<IframeRenderer {...props} />
</View>
),
};
@pkreissel I'll cheers to you tonight. This bug has been plaguing our android app for months and it's been tough to trace down and resolve. Your fix immediately worked. Thank you so, so much.
I also faced this issue but the above solution work for me @pkreissel Thanks dude
This seems to be like a very important change to implement in the library (or at the very least, document)
I swear that I have completed these tasks before submitting:
Bug Report
Environment
React Native
Libraries
Devices
Happens on multiple (>6) different Android Devices, so it's definitely an Android Issue. I Am using Expo App & build App in Simulator
Reproduction
Description
The Expo App crashes (without any warning or error messages)
Solution
What solved this for me was wrapping the Webview into a:
<View renderToHardwareTextureAndroid={true} >...</View>
This seems to be primarily a web view issue, however this fix could also be implemented in this plugin in the meantime.