In my app I am checking the discovered bluetooth devices type by Class bluetoothClass.Device I want to check if device is tablet or not but I can not find anything to check is device tablet or not.
I am checking devices here as follows:
if (device.bluetoothClass.deviceClass == BluetoothClass.Device.PHONE_SMART
||
device.bluetoothClass.majorDeviceClass == BluetoothClass.Device.Major.PHONE)
pairedDevicesList.add(device)
}
I am not able to check for if discovered device is tablet or not? I will be thankful for any guidence and helpful material.