upi支払いに実装「com.shreyaspatil:EasyUpiPayment:2.2」を使用しています。しかし、gpay はトランザクションが危険である可能性があると言ってトランザクションに失敗します。PhonPe は、技術的なエラーが原因でトランザクションが失敗したと言っています。何が問題なのかわかりません。コードは次のとおりです
final EasyUpiPayment easyUpiPayment = new EasyUpiPayment.Builder()
.with(this)
.setPayeeVpa("xxxxxxxxxxxxxxx")
.setPayeeName("xxx xxxx xxxx")
.setTransactionId(transactionId)
.setTransactionRefId("Ref" + transactionId)
.setDescription(description)
.setAmount(amount)
.build();
easyUpiPayment.startPayment();