6

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?

Gopinath
  • 12,981
  • 6
  • 36
  • 50
  • Possible duplicate of [Difference between managed and unmanaged in-app product android?](http://stackoverflow.com/questions/9391123/difference-between-managed-and-unmanaged-in-app-product-android) – msangel Oct 28 '16 at 10:41

1 Answers1

3

That's not possible at the moment, only separate purchases per item, check out this answer for a workaround:

Android in-app multiple purchases

Community
  • 1
  • 1
ricvieira
  • 1,053
  • 7
  • 8