You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Override
public void onPaymentCancelled() {
Toast.makeText(PaymentActivity.this, "cancelled", Toast.LENGTH_SHORT).show();
}
@Override
public void onInitiatePaymentFailure(String s) {
Log.e("cancelled",s);
Toast.makeText(PaymentActivity.this, s, Toast.LENGTH_SHORT).show();
}
The text was updated successfully, but these errors were encountered:
Irfanhaidermomin
changed the title
Instamojo Android SDK Payment callback not received
Instamojo Android SDK Payment callback not received in TEST Environment
Sep 29, 2023
I initiate like this:
Instamojo.getInstance().initiatePayment(this, orderID, this);
@OverRide
public void onInstamojoPaymentComplete(String orderID, String transactionID, String paymentID, String paymentStatus) {
Log.e("Payment", "Payment complete. Order ID: " + orderID + ", Transaction ID: " + transactionID
+ ", Payment ID:" + paymentID + ", Status: " + paymentStatus);
//paymentId = paymentID;
}
The text was updated successfully, but these errors were encountered: