I'm adding in-app billing in one of my application. I created a test account and added a credit card to it. I bought the product once and it all went fine. Now I want to test this same flow again. How do I do this?
The pendingIntent
in the following code is always null whenever I try to buy an item.
Bundle buyIntentBundle = mService.getBuyIntent(3, getPackageName(),
KEY_AD_FREE, "inapp", "");
PendingIntent pendingIntent = buyIntentBundle.getParcelable("BUY_INTENT");
Is it because I've bought the product already, or is there some other issue?