I'm having issues with ACTIONSECURECARD_DATA action.
I call it with this code here:
Intent intent = new Intent(Intents.ACTION_SECURE_CARD_DATA);
intent.putExtra(Intents.EXTRA_CARD_ENTRY_METHODS, Intents.CARD_ENTRY_METHOD_MAG_STRIPE);
intent.putExtra(Intents.EXTRA_TRANSACTION_TYPE, Intents.TRANSACTION_TYPE_CARD_DATA);
startActivity(intent);
and receive this error message:
android.content.ActivityNotFoundException: No Activity found to handle Intent { act=clover.intent.action.START_SECURE_CARD_DATA (has extras) }
Things I've tried to fix this: 1.) use the full intent name instead of the variable: "clover.intent.action.STARTSECUREPAYMENT"
2.) upgrade my sdk version from 86 to 186 in the gradle dependancies within android studio. With this line: compile 'com.clover.sdk:clover-android-sdk:168'
then after failing, this line: compile 'com.clover.sdk:clover-android-sdk:latest.release'
I'm at a loss as to what else to try here. I've used ACTIONSECUREPAY, ACTIONCLOVERPAY and other intents provided through the android examples with no issues.
NOTE: - ACTIONSECUREBALANCECHECK outputs the same error as ACTIONSECURECARDDATA.
- I am using the genymotion emulated environment.