So I'm building an Android app that uses the "freemium" monetization model. I'm able to make purchases with a "test card, always approves" of the "premium" upgrade non consumable product just fine. The problem I'm having is once I make that purchase, I can never test purchase the same non consumable product again. I've followed the testing recommendations here: https://developer.android.com/google/play/billing/test. I've cancelled/refunded the test purchase as outlined here: https://support.google.com/googleplay/android-developer/answer/2741495. I got a confirmation e-mail from google about the order cancellation on the e-mail address associated with the test card. The google play console under order management confirms the test purchase is refunded. However, BillingClient.launchBillingFlow() now consistently returns BillingClient.BillingResponseCode.ITEM_ALREADY_OWNED now. I've tried this on multiple Android devices associated with the same test card google account. I do have code in place to acknowledge a purchase with BillingClient.acknowledgePurchase() in PurchasesUpdatedListener.onPurchasesUpdated(), so I believe my in app purchasing code is complete, flow wise. I'd really like to do more testing before release and this problem is certainly making that harder. Is there a way to revoke the product's owned status? The order/refund cancel procedure google provides in their documentation apparently doesn't work. I'd rather avoid having to make many google accounts for no other reason that using each one just once to make a test purchase. Any thoughts?
Thanks, Omri