class Browser::Platform

def android_app?

https://developer.chrome.com/multidevice/user-agent#webview_user_agent
Detect if in an Android app webview (Lollipop and newer)
def android_app?
  android? && ua =~ /\bwv\b/
end