RESEARCH.md
How to find new tablet (or phone) models from a vendor and add them to Mobile-Detect.
samsung galaxy tab and filter by announcement year. Each device page lists all SM-XXXX model variants (Wi-Fi, LTE, 5G, regional suffixes like N, B, F)src/MobileDetect.php (search for SamsungTablet) and test fixtures in tests/providers/vendors/Samsung.php to identify what's missing"SM-XXXX" user agent on the webMozilla/5.0 (Linux; Android {version}; {model}) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/{version}.0.0.0 Safari/537.36
src/MobileDetect.php (e.g., $tabletDevices['SamsungTablet'])tests/providers/vendors/{Vendor}.phpvendor/bin/phpunit -v -c tests/phpunit.xml to verifySM-T### -- Standard Galaxy Tab seriesSM-X### -- Newer Galaxy Tab S / Tab A series (2022+)SM-P### -- Galaxy Tab with S Pen (Tab S6 Lite, etc.)B = global 5G, N = Korean, U = US carrier, F = regional LTE variantChrome 110+ began rolling out UA reduction, replacing the device model name with K. Samsung Browser v24+ also uses K. However, many devices and browsers still send the full model number. The library's detection depends on model-number matching, so we continue to add model patterns. Long-term, Client Hints (Sec-CH-UA-Model) support may be needed.