browscap-java
browscap-java copied to clipboard
A blazingly fast and memory efficient (thread-safe) Java client on top of the BrowsCap CSV source files.
Since Edge now is chromium based it can be installed on Linux and Mac. But userAgentParser can't identify it when installed in some version of others OS. For example, does...
We run a simple service that uses this package on Kubernetes, and startup time is over 15 seconds. Memory usage explodes to over 2G during this time, and then over...
I migrated our user agent functionality to this library. Nearly all unit tests worked except for this UA: "Mozilla/5.0 (iPad; U; CPU OS 4_3_5 like Mac OS X; de-de) AppleWebKit/533.17.9...
Hello, We noticed that some user agent coming from bots/crawlers are not detected as "bot/crawler". The parser returns just the default "unknown" capability. Here is the list of user agent...
ua `Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Safari/605.1.15` ``` List fields = new ArrayList(4); fields.add(PLATFORM); fields.add(PLATFORM_VERSION); fields.add(BROWSER); fields.add(BROWSER_MAJOR_VERSION); UserAgentParser parser = new UserAgentService().loadParser(fields); Capabilities...
I'm currently using this library for device detection, and it is successfully identifying various mobile devices, including iPad mini. I'm encountering an issue with the library's device detection functionality. While...
I emulate different tablets in Google Chrome on MacOS and when running for instance Surface Pro 7, which is a tablet, browscap identifies it as a desktop. Running iPad or...
When adding the dependency into maven pom.xml : ` com.blueconic browscap-java 1.4.5 ` Intellij cannot import class com.blueconic.browscap.BrowsCapField When looking at the jar in External Libraries, this class is not...