Google Pay UPI -Integration funktioniert nicht in Android

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Google Pay UPI -Integration funktioniert nicht in Android

by Anonymous » 11 Jul 2025, 18:15

GPAY -Integration funktionierte vor 2 Tagen völlig in Ordnung, zeigt jedoch denselben Fehler in der GPAY -App. Die Absicht, die GPAY -Zahlung zu fordern, funktioniert nicht. Aber jetzt funktioniert es nicht. Jede Hilfe wäre geschätzt! Vielen Dank im Voraus. < /P>
Mein Code < /p>

Code: Select all

 uriapp = new Uri.Builder()
.scheme("upi")
.authority("pay")
.appendQueryParameter("pa", getString(R.string.vpa))
.appendQueryParameter("pn", getString(R.string.payee))
.appendQueryParameter("tr", orderId)
.appendQueryParameter("tn", description)
.appendQueryParameter("am", String.valueOf(amount))
.appendQueryParameter("cu", "INR")
.build();

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(uriapp);
intent.setPackage(model.getPackageName());
if (intent.resolveActivity(getPackageManager()) != null) {
startActivityForResult(intent, GOOGLE_REQUEST_CODE);
} else {
Toast.makeText(this, "This payment mode is not available on your device.", Toast.LENGTH_LONG).show();
}
< /code>
Ich verwende die richtige VPA -Geschäfts -ID.this transaction may be risky. for your safety it cant be completed at this time

Top