Added RCA Devices detection

This commit is contained in:
Nikhil Motiani 2017-03-16 14:57:28 +05:30 committed by Nikhil Motiani
parent 4768992762
commit 8e09cd49e3
2 changed files with 25 additions and 0 deletions

View File

@ -639,6 +639,9 @@
/android.+a000(1)\s+build/i // OnePlus /android.+a000(1)\s+build/i // OnePlus
], [MODEL, [VENDOR, 'OnePlus'], [TYPE, MOBILE]], [ ], [MODEL, [VENDOR, 'OnePlus'], [TYPE, MOBILE]], [
/android.+[;\/]\s*(RCT[\d\w]+)\s+build/i // RCA Tablets
], [MODEL, [VENDOR, 'RCA'], [TYPE, TABLET]], [
/\s(tablet)[;\/]/i, // Unidentifiable Tablet /\s(tablet)[;\/]/i, // Unidentifiable Tablet
/\s(mobile)(?:[;\/]|\ssafari)/i // Unidentifiable Mobile /\s(mobile)(?:[;\/]|\ssafari)/i // Unidentifiable Mobile
], [[TYPE, util.lowerize], VENDOR, MODEL] ], [[TYPE, util.lowerize], VENDOR, MODEL]

View File

@ -545,4 +545,26 @@
"type" : "tablet" "type" : "tablet"
} }
} }
,
{
"desc" : "RCA Voyager III Tablet",
"ua" : "Mozilla/5.0 (Linux; Android 6.0.1; RCT6973W43 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36",
"expect" :
{
"vendor" : "RCA",
"model" : "RCT6973W43",
"type" : "tablet"
}
}
,
{
"desc" : "RCA Voyager II Tablet",
"ua" : "Mozilla/5.0 (Linux; Android 5.0; RCT6773W22B Build/LRX21M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36",
"expect" :
{
"vendor" : "RCA",
"model" : "RCT6773W22B",
"type" : "tablet"
}
}
] ]