How to Implement Simple UPI Payment System in SketchWare(Original)
upi://pay?pa=androidbulb123@ybl&pn=Rajendra Kumar Dangi&tn=for school fee&am=1&cu=INR
Intent chooser = Intent.createChooser(i, "UPI");
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN){
startActivityForResult(chooser, 2, null);
}
String res = _data.getStringExtra("response");
if (res.contains("Status=SUCCESS")) {
} else {
}
No comments:
Post a Comment