|
var webviewVersion = Android.webviewVersion(); |
|
if(!webviewVersion) { |
|
webviewVersion = "no version, old webview?"; |
|
} else if(webviewVersion<"80.0") { |
|
webviewVersion = webviewVersion + " TOO OLD!"; |
|
} |
Latest WebView 115.0.5790.85 ends up labeled "TOO OLD"
likely because of plain string comparison, vs splitting out major version and converting to int

webcall-android/src/main/assets/webcall.js
Lines 42 to 47 in 1a485a0
Latest WebView 115.0.5790.85 ends up labeled "TOO OLD"
likely because of plain string comparison, vs splitting out major version and converting to int