I am working on a project where we sell variety of virtual goods. I want to show these virtual goods and let him buy multiple items at once. But the Google's in-app billing takes only one item at a time, accoring to what I understand.
Bundle request = makeRequestBundle("REQUEST_PURCHASE");
request.putString(Consts.BILLING_REQUEST_ITEM_ID, mProductId);
How do I call the in-app billing api and pass multiple item ids at once? Is that allowed?