Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detect android webview

I have an html-javascript page, and I need to detect whenever it open on web view (Like inside facebook webview, twitter webview, etc.), and if it a webview - display another content.

Note: I do not control the third-party Android apps, so I cannot make changes to their code.

I already found a way to detect an IOS webview (Found it on stackoverflow):

var isIosWebview =/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(navigator.userAgent)

Now I'm looking for a javascript code that can detect Android web view.

Help?

like image 432
Megi Ben Nun Avatar asked Aug 06 '15 06:08

Megi Ben Nun


2 Answers

You can't detect it by only using the user agent string, as any app that uses WebView can set the UA string to anything it wants.

If you still insist on using the UA string, this is the explanation of the official docs: initially, Chromium-based WebView was using .0.0.0 as Chrome version suffix; in the newer versions ; wv was added into the platform part of the UA string. Note that pre-KitKat WebViews didn't have the Chrome part. See older posts about that: Android, webview user agent vs browser user agent

Another hint of WebView involvement is presence of X-Requested-With HTTP header with an application package name. Note that this header is also set by XMLHttpRequest, so you need to look for the actual value of the header.

The statement that WebView doesn't support iframes is not correct.

like image 179
Mikhail Naganov Avatar answered Oct 06 '22 09:10

Mikhail Naganov


The info others provided in this thread gave me what I needed to solve this problem in my case. For others, here is the resulting JS regex which represents the detection described in the accepted answer:

/(Version\/\d+.*\/\d+.0.0.0 Mobile|; ?wv|(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari))/i.test(navigator.userAgent)

The regex includes cases for old Android, new Android, iOS versions.

like image 36
Max Harper Avatar answered Oct 06 '22 11:10

Max Harper