Skip to content

Commit

Permalink
added decoder_gs1_qrcode
Browse files Browse the repository at this point in the history
  • Loading branch information
ltrudu committed Jan 9, 2023
1 parent 8ebfb66 commit 36b99a1
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public class Decoders {
public Boolean decoder_ean13 = null;
public Boolean decoder_ean8 = null;
public Boolean decoder_gs1_databar = null;
public Boolean decoder_gs1_qrcode = null;
public Boolean decoder_hanxin = null;
public Boolean decoder_i2of5 = null;
public Boolean decoder_japanese_postal = null;
Expand Down Expand Up @@ -380,6 +381,7 @@ private void setupDecoders(Bundle barcodeProps) {
if(Decoders.decoder_ean13 != null ) barcodeProps.putString( "decoder_ean13" , Decoders.decoder_ean13 ? "true":"false");
if(Decoders.decoder_ean8 != null ) barcodeProps.putString( "decoder_ean8" , Decoders.decoder_ean8 ? "true":"false");
if(Decoders.decoder_gs1_databar != null ) barcodeProps.putString( "decoder_gs1_databar" , Decoders.decoder_gs1_databar ? "true":"false");
if(Decoders.decoder_gs1_qrcode != null ) barcodeProps.putString( "decoder_gs1_qrcode" , Decoders.decoder_gs1_qrcode ? "true":"false");
if(Decoders.decoder_hanxin != null ) barcodeProps.putString( "decoder_hanxin" , Decoders.decoder_hanxin ? "true":"false");
if(Decoders.decoder_i2of5 != null ) barcodeProps.putString( "decoder_i2of5" , Decoders.decoder_i2of5 ? "true":"false");
if(Decoders.decoder_japanese_postal != null ) barcodeProps.putString( "decoder_japanese_postal" , Decoders.decoder_japanese_postal ? "true":"false");
Expand Down

0 comments on commit 36b99a1

Please sign in to comment.