@@ -137,6 +137,7 @@ fun setProcessParams(processParams: ProcessParam, opts: JSONObject) = opts.forEa
137137 " generateDTCVC" -> processParams.generateDTCVC = v as Boolean
138138 " strictDLCategoryExpiry" -> processParams.strictDLCategoryExpiry = v as Boolean
139139 " generateAlpha2Codes" -> processParams.generateAlpha2Codes = v as Boolean
140+ " disableAuthResolutionFilter" -> processParams.disableAuthResolutionFilter = v as Boolean
140141 " measureSystem" -> processParams.measureSystem = v.toInt()
141142 " barcodeParserType" -> processParams.barcodeParserType = v.toInt()
142143 " perspectiveAngle" -> processParams.perspectiveAngle = v.toInt()
@@ -221,6 +222,7 @@ fun getProcessParams(processParams: ProcessParam) = mapOf(
221222 " generateDTCVC" to processParams.generateDTCVC,
222223 " strictDLCategoryExpiry" to processParams.strictDLCategoryExpiry,
223224 " generateAlpha2Codes" to processParams.generateAlpha2Codes,
225+ " disableAuthResolutionFilter" to processParams.disableAuthResolutionFilter,
224226 " measureSystem" to processParams.measureSystem,
225227 " barcodeParserType" to processParams.barcodeParserType,
226228 " perspectiveAngle" to processParams.perspectiveAngle,
@@ -316,6 +318,7 @@ fun setCustomization(customization: ParamsCustomization, opts: JSONObject) = opt
316318 " torchButtonOnImage" -> editor.setTorchImageOn(v.toDrawable())
317319 " torchButtonOffImage" -> editor.setTorchImageOff(v.toDrawable())
318320 " livenessAnimationImage" -> editor.setLivenessAnimationImage(v.toDrawable())
321+ " multipageButtonImage" -> editor.setMultipageButtonImage(v.toDrawable())
319322 " helpAnimationImageMatrix" -> editor.setHelpAnimationImageMatrix(matrixFromJSON(v as JSONArray ? )).setHelpAnimationImageScaleType(ImageView .ScaleType .MATRIX )
320323 " multipageAnimationFrontImageMatrix" -> editor.setMultipageAnimationFrontImageMatrix(matrixFromJSON(v as JSONArray ? )).setMultipageAnimationFrontImageScaleType(ImageView .ScaleType .MATRIX )
321324 " multipageAnimationBackImageMatrix" -> editor.setMultipageAnimationBackImageMatrix(matrixFromJSON(v as JSONArray ? )).setMultipageAnimationBackImageScaleType(ImageView .ScaleType .MATRIX )
@@ -401,6 +404,7 @@ fun getCustomization(customization: ParamsCustomization) = mapOf(
401404 " torchButtonOnImage" to customization.torchImageOnDrawable.toBase64(),
402405 " torchButtonOffImage" to customization.torchImageOffDrawable.toBase64(),
403406 " livenessAnimationImage" to customization.livenessAnimationImage.toBase64(),
407+ " multipageButtonImage" to customization.multipageButtonDrawable.toBase64(),
404408 " helpAnimationImageMatrix" to generateMatrix(customization.helpAnimationImageMatrix),
405409 " multipageAnimationFrontImageMatrix" to generateMatrix(customization.multipageAnimationFrontImageMatrix),
406410 " multipageAnimationBackImageMatrix" to generateMatrix(customization.multipageAnimationBackImageMatrix),
0 commit comments