Is there any possibility to get at the price of the SKU as a Double. It looks like now, in the amazon.sdktester json that's generated, there is a currencyPriceMap that's generated. Here's an example:
"currencyPriceMap":{"BR":2.33,"DE":0.77,"AU":1.1,"IN":60.31,"JP":107.0,"GB":0.61,"IT":0.77,"CN":6.0,"FR":0.77,"ES":0.77,"US":0.99,"CA":1.09}}}
Is that data exposed by the SDK at all? Better yet, is that exposed when just making a purchase on a device, NOT just using the Amazon App Tester. Ideally I'd be able to get at that data at the time of purchase, but right now all that is exposed is the getPrice which only returns a string which does not work for me -- handling multiple currencies and trying to get out the Double is not a good option. Google's solution is to send along a "priceMicros" value:
price_amount_micros
Price in micro-units, where 1,000,000 micro-units equal one unit of the currency. For example, if price
is "€7.99"
, price_amount_micros
is "7990000"
. This value represents the localized, rounded price for a particular currency.
Is this something that's on your roadmap? Appreciate your time. Thank you.