3

Can I publish different versions of my app for different countries? Its functionality has to change if a user is from USA or from Israel for example.

Thank you!

Tsur Yohananov
  • 533
  • 1
  • 7
  • 17

1 Answers1

1

There is concept of multiple apk's https://developer.android.com/google/play/publishing/multiple-apks.html unfortunately it cannot be customized to country specific...

Option 1 - Release multiple projects e.g. com.XXX.USA com.XXX.IND com.XXX.UK etc and release each app only to that specific country.

Option 2 - Modify your program to take input from user as country and change application flow based on country selected.

Amod Gokhale
  • 2,346
  • 4
  • 17
  • 32