Explicitly destroy webview on activity destroy

(cherry picked from commit 33e5fea96c)
This commit is contained in:
arkon
2020-07-26 17:47:43 -04:00
committed by Jobobby04
parent b4c68f454d
commit fa812830b8
@@ -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