Bump compileSdk to 30 (#5140)

This commit is contained in:
Ivan Iskandar
2021-05-23 01:48:27 +07:00
committed by GitHub
parent 89fb943733
commit ef8a87a30f
5 changed files with 10 additions and 10 deletions

View File

@@ -91,7 +91,7 @@ class WebViewActivity : BaseViewBindingActivity<WebviewActivityBinding>() {
}
}
} else {
binding.webview.restoreState(bundle)
binding.webview.restoreState(bundle!!)
}
if (bundle == null) {
@@ -199,7 +199,7 @@ class WebViewActivity : BaseViewBindingActivity<WebviewActivityBinding>() {
}
private fun openInBrowser() {
openInBrowser(binding.webview.url)
openInBrowser(binding.webview.url!!)
}
companion object {