Show message if WebView version is too low

This commit is contained in:
arkon
2020-02-07 22:49:33 -05:00
parent 72ef5d8f8d
commit f515674dff
4 changed files with 57 additions and 11 deletions
@@ -0,0 +1,37 @@
package eu.kanade.tachiyomi.util.system
import android.webkit.WebView
import android.widget.Toast
import eu.kanade.tachiyomi.R
private val WEBVIEW_UA_VERSION_REGEX by lazy {
Regex(""".*Chrome/(\d+)\..*""")
}
private const val MINIMUM_WEBVIEW_VERSION = 78
fun WebView.checkVersion() {
if (getWebviewMajorVersion(this) < MINIMUM_WEBVIEW_VERSION) {
this.context.toast(R.string.information_webview_outdated, Toast.LENGTH_LONG)
}
}
// Based on https://stackoverflow.com/a/29218966
private fun getWebviewMajorVersion(webview: WebView): Int {
val originalUA: String = webview.settings.userAgentString
// Next call to getUserAgentString() will get us the default
webview.settings.userAgentString = null
val uaRegexMatch = WEBVIEW_UA_VERSION_REGEX.matchEntire(webview.settings.userAgentString)
val webViewVersion: Int = if (uaRegexMatch != null && uaRegexMatch.groupValues.size > 1) {
uaRegexMatch.groupValues[1].toInt()
} else {
0
}
// Revert to original UA string
webview.settings.userAgentString = originalUA
return webViewVersion
}