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?