-
Notifications
You must be signed in to change notification settings - Fork 426
Open
Labels
Description
The browser user agent has a lot of information. If it was overriden by OverrideUserAgent cordova preference then there is no way to get the original user agent from javascript. It would be nice if this plugin would also have a property for the original user agent.
ios possible implementation
https://github.com/apache/cordova-ios/blob/master/CordovaLib/Classes/Public/CDVUserAgentUtil.m#L37
android possible implementation
String userAgent = System.getProperty( "http.agent" );
andreszs