How to get price info from store?

I wonder how I can get the correct price info from the store.

I have everything implemented and when using this line (in a product listener):

print(event.products[i].localizedPrice, event.products[i].price, event.products[i].priceLocale)

I only get the first info for the localizedPrice but the rest is nil.

I’m testing on android and I wonder how I can get the rest of the info or if this is for iOS only?

This is one area that the three IAP plugins vary the most. Here’s what Google returns:

https://docs.coronalabs.com/plugin/google-iap-v3/event/productList/products.html

Amazon: https://docs.coronalabs.com/plugin/amazon-iap-v2/event/productList/products.html

iOS: https://docs.coronalabs.com/api/library/store/event/productList/products.html

We are revamping the IAP Guide and when I was working on that, the only four values in common between the three are:

productIdentifier

title

description

localizedPrice

Rob

This is one area that the three IAP plugins vary the most. Here’s what Google returns:

https://docs.coronalabs.com/plugin/google-iap-v3/event/productList/products.html

Amazon: https://docs.coronalabs.com/plugin/amazon-iap-v2/event/productList/products.html

iOS: https://docs.coronalabs.com/api/library/store/event/productList/products.html

We are revamping the IAP Guide and when I was working on that, the only four values in common between the three are:

productIdentifier

title

description

localizedPrice

Rob