question

Dan avatar image
Dan asked chanel Deactivated commented

Successful ACTION_SECURE_PAY intents not broadcasting PAYMENT_PROCESSED actions

Hi just would like a confirmation on something. My app (App A) currently receives payment broadcasts for all kinds of payment.

However, if I use a totally different app (App B) to pay for an order like so:

Intent intent = new Intent(Intents.ACTION_SECURE_PAY);
intent.putExtra(Intents.EXTRA_ORDER_ID, order.getId());
intent.putExtra(Intents.EXTRA_AMOUNT, order.getTotal()); 
startActivityForResult(intent, TRANSACTION_CODE);

App A gets no payment broadcast even though the order is shown as paid-for successfully by App B in the Orders app. Do you think this is a bug?
PaymentsIntentsBroadcasts
1 comment
10 |2000

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

chanel avatar image chanel commented ·

In order to provide a more complete answer, can you provide the code from App A that listens for the broadcast?

0 Likes 0 ·

0 Answers

·

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Welcome to the
Clover Developer Community