I want to integrate my app with venmo which I have already started using this https://github.com/venmo/app-switch-android. I downloaded two files to start with demo.
After doing it I used this code to display venmo dialog
Intent venmoIntent = VenmoLibrary.openVenmoPayment("APP_NUMBER",
"MyApp", "venmo@venmo.com", "10",
"For testing purpose", "Pay");
If I do this it displays venmo dialog to make a payment. But I don't know how I can check transection is successful without code. We can check it in code in onActivityResult method. But Is there a sandbox mode(something like PayPal) to check payment is successful or not?
Please Help to test with sandbox mode in venmo.