I am creating an Android application with billing in the application and I want to do two things:
- Show prices of the static number of items (1-month / 3-month / 12-month subscription) from the application localized to the face. Currency Android Market.
- Change prices without resubmitting the entire application to the Android Market.
I have determined that there is no way to request the Android Market at prices similar to how you can request the Apple App Store. In doing so, I want to add an API call on my server, which returns the prices that I set in admin on the Android Market.
Then the problem arises - how do I know in which currency to show prices? Is there any way for me to find out at runtime what currency the user market will show so that I can add an argument to a new API call and display the correct currency and price from the application?
Thanks in advance.
source share