-
Notifications
You must be signed in to change notification settings - Fork 146
Success callback never called #84
Comments
This seems to be happening when you have suppressConfirmation set to true. |
if (resultCode == CardIOActivity.RESULT_CARD_INFO) { In this case, when you have suppressConfirmation set to true, control goes to the else block and your error callback is called. |
So I've checked and it appears to work with suppressConfirmation set to false but we really need no confirmation :( |
Implement the plugin locally. And add this instead if (resultCode == CardIOActivity.RESULT_CARD_INFO || resultCode == CardIOActivity.RESULT_CONFIRMATION_SUPPRESSED) Should work with suppressConfirmation set to true. |
Look at this PR |
General information
Issue description
upon successfull scan, cardScanCancel is called instead of cardScanComplete.
cardScanComplete is never called. Why would my scan always be canceled when it seems to do a successful scan??
The text was updated successfully, but these errors were encountered: