Variable price for mobile app for various countries

204 views Asked by At

Can I provide a different price (not just a converted currency) for my app for different countries stores?

p.s.1 I want to do this for apple's app store and google's play store. p.s.2 I don't want to upload a separate app for each country's store. I want it to be the same app for all countries but with different prices?

1

There are 1 answers

2
Blind Ninja On BEST ANSWER

for ios

SKProduct has a property "priceLocale" , which provide you local price of product (based on device local by default).

For each in-app purchase item you have to create a separate SKProduct object with a valid "productIdentifier".

    SKProductsRequest *request = [[SKProductsRequest alloc] initWithProductIdentifiers:[NSSet setWithObject:bundleID]];
    request.delegate = self;
    [request start];