Working on Kotlin WebView
,
val webView = WebView(this)
.....
webView.isHardwareAccelerated = true
returns compiler error ,
Val cannot be reassigned
How can I set isHardwareAccelerated = true
for web view?
Update
This mod Rathod marked it as possibly duplicate and even closed the post without noticing the title of the post. I know when does this exception occurs. What I don't know is, how to modify the isHardwareAccelerated
value on other way.