I have an app that has the manual entry option enabled, I also set the manual entry to be enabled when I use the sdk function like the code shows below, now, once that the clover device was updated with the new payment application, the manual entry button is missing, it used to work before the update. Can anybody help me understand if there is something that needs to be done/updated/etc?
long amt = Long.parseLong(amount); SaleRequest saleRequest = new SaleRequest(); saleRequest.setExternalId(ExternalIdUtils.generateNewID()); //required, but can be any string saleRequest.setAmount(amt); saleRequest.setCardEntryMethods(CardEntryMethods.CARD_ENTRY_METHOD_MANUAL | CardEntryMethods.CARD_ENTRY_METHOD_MAG_STRIPE | CardEntryMethods.CARD_ENTRY_METHOD_NFC_CONTACTLESS | CardEntryMethods.CARD_ENTRY_METHOD_ICC_CONTACT);