I'm launching an intent from my activity to trigger secure card read.
final Intent intent = new Intent(Intents.ACTION_SECURE_CARD_DATA);
When I try to swipe a credit card that has an EMV chip, then the clover device shows the screen "Please insert card instead of swiping". Is there a way I can by pass this and make the device to allow mag swiping only.
The reason behind is that, I am trying to read the card holder's info from the resulting PaymentRequestCardDetails.
And so far what I found was, the firstName
and lastName
of the card holder is returned only for non EMV cards that are swiped, and these fields are returned as null when the cards are read through ICC Contact
.