user3268403
user3268403

Reputation: 213

Targeting an android application to particular language(s)

I am developing an app that I would like to deploy to English speaking users first. I would like to target my app only to users who have set their device language as English (en_US, en_GB, etc). How do I achieve this?

Using Google developer console, I am able to target my app to specific countries and carriers but not based on language. For example, in countries like India and China, I want to target my app only to users who's device has English as its language. How can I achieve this?

Upvotes: 0

Views: 62

Answers (2)

Morteza
Morteza

Reputation: 1

You can't prevent the user from installing your app, but you can check the device language in your first activity, and finish it if required.

Upvotes: 0

CommonsWare
CommonsWare

Reputation: 1006869

How can I achieve this?

You can't. After all, the user is welcome to change their device's locale at any point in time.

Upvotes: 2

Related Questions