Localize your in-app products for Android.
-
Login to your [publisher portal](portal and enter the "In-app Products and Subscriptions" section) and enter the "In-app Products and Subscriptions" section.
-
Place CSV into assets folder.
-
Try it out!
LocalizedIAPs iaps = new LocalizedIAPs( this, "in_app_products.csv" );
Map< String, Product > products = iaps.getProducts();
Product p;
p.getTitle(); // Get the correct text for chosen locale, if available (the fallback is otherwise chosen).
p.getFormattedPrice(); // Get a formatted price string that includes the price and currency symbol.MIT
