I have an Android app using In-App-Purchase that caters to an international audience, so I expect payments in different currencies. Of course I would like to show the items
Perhaps use the default Locale of the device?
String locale = Locale.getDefault().toString();
Then you could do a comparison off of that.
Just an idea!