Aggiunta compatibilità con Honeywell CT60

This commit is contained in:
Giuseppe Scorrano 2020-09-22 12:00:09 +02:00
parent a41c5b34bb
commit 1e34fd8840
3 changed files with 21 additions and 2 deletions

View File

@ -1,5 +1,23 @@
<component name="ProjectCodeStyleConfiguration"> <component name="ProjectCodeStyleConfiguration">
<code_scheme name="Project" version="173"> <code_scheme name="Project" version="173">
<JetCodeStyleSettings>
<option name="PACKAGES_TO_USE_STAR_IMPORTS">
<value>
<package name="java.util" alias="false" withSubpackages="false" />
<package name="kotlinx.android.synthetic" alias="false" withSubpackages="true" />
<package name="io.ktor" alias="false" withSubpackages="true" />
</value>
</option>
<option name="PACKAGES_IMPORT_LAYOUT">
<value>
<package name="" alias="false" withSubpackages="true" />
<package name="java" alias="false" withSubpackages="true" />
<package name="javax" alias="false" withSubpackages="true" />
<package name="kotlin" alias="false" withSubpackages="true" />
<package name="" alias="true" withSubpackages="true" />
</value>
</option>
</JetCodeStyleSettings>
<codeStyleSettings language="XML"> <codeStyleSettings language="XML">
<arrangement> <arrangement>
<rules> <rules>

View File

@ -17,8 +17,8 @@ apply plugin: 'com.google.gms.google-services'
android { android {
def appVersionCode = 147 def appVersionCode = 148
def appVersionName = '1.12.18' def appVersionName = '1.12.19'
signingConfigs { signingConfigs {
release { release {

View File

@ -45,6 +45,7 @@ public class HoneyWellBarcodeReader implements BarcodeReaderInterface {
List<String> compatibleModels = new ArrayList<String>(); List<String> compatibleModels = new ArrayList<String>();
compatibleModels.add("EDA50"); compatibleModels.add("EDA50");
compatibleModels.add("EDA51"); compatibleModels.add("EDA51");
compatibleModels.add("CT60");
if(compatibleModels.contains(model)) { if(compatibleModels.contains(model)) {
return true; return true;