Explicitly destroy webview on activity destroy

(cherry picked from commit 33e5fea96c575a2de2b3850b707105e6e20e38bd)
This commit is contained in:
arkon 2020-07-26 17:47:43 -04:00 committed by Jobobby04
parent b4c68f454d
commit fa812830b8

View File

@ -122,6 +122,11 @@ class WebViewActivity : BaseActivity<WebviewActivityBinding>() {
}
}
override fun onDestroy() {
binding.webview?.destroy()
super.onDestroy()
}
override fun onCreateOptionsMenu(menu: Menu): Boolean {
menuInflater.inflate(R.menu.webview, menu)
return true