How to send Google Pay or Bhim UPI request via app. I know about this but I want to send payment request:
try {
Uri uri = Uri.parse("upi://pay?pa="+payeeAddress+"&pn="+payeeName+"&tn="+transactionNote+
"&am="+amount+"&cu="+currencyUnit);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivityForResult(intent,1);}
catch (Exception e) {
Toast.makeText(MainActivity.this, "Sorry! Please Install GPAY or BHIM", Toast.LENGTH_SHORT).show();e.printStackTrace();}
}