Search code examples
androidapkcountryregionsmultiple-apk

Publishing Same Android App for Different Countries


I've developed an android app that i want to publish on google play store. Issue is that the app won't work same in the different countries so I've to tweak my apk and upload the same android app for different countries.

I've read on Google developer guide site but It doesn't mention any country/region based filters. Any help or suggestion?

Android Publishing Filters Guide

I'm using GeoLocation Names in my app. Some regions have 4 Parts address(Street Name, Area Name, City, Country) and some have only 3 (Area, City and Country).


Solution

  • I don't see any filter that will help you in your app publication for different regions but I can suggest a different approach for your idea (based on your comment).

    "based on its functionality to provide user with the info about the street/area in its surrounding. Streets/areas will covers a small radius around the user current location".

    You can use the user's current coordinates and set a parameter of some radius lets say 500M and you can show info that is within that circle of 500M radius.

    " if i skip the street name it will only widen the surrounding area."

    By doing this, it won'r really matter if the street or area name was available or not, you'll get your job done anyway.