WebViewSuite
WebViewSuite copied to clipboard
HTML document not being displayed fully
with one of the latest updates of a WebView this library stopped from rending full content of a HTML document.
Could this library provide API to access to the encapsulated WebView? or perhaps the use of the WebView property shall be amended?
here's one solution for Android Framework's problem: https://stackoverflow.com/questions/54506084/webview-issue-new-update-android-operative-system
Maybe:
webview?.interfereWebViewSetup(WebViewSetupInterference { webView ->
val webSettings = webView.settings
webSettings.javaScriptEnabled = true
webSettings.defaultTextEncodingName = "utf-8"
})