Aggiunto nuovo modello per Zebra (TC200J)

This commit is contained in:
Giuseppe Scorrano 2020-10-21 10:13:50 +02:00
parent fb85af8bbf
commit 5632c6f7ab

View File

@ -33,6 +33,8 @@ public class ZebraBarcodeReader implements BarcodeReaderInterface {
String model = Build.MODEL;
if(model.equalsIgnoreCase("TC700H")) {
return true;
} else if(model.equalsIgnoreCase("TC200J")) {
return true;
} else return false;
}