-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can we determine what country the user is in, or should we ask them? #12
Comments
The Android BLE Guide says:
So we'll necessarily have that permission in any case. Though getting the location while in the background is Google would really like people to use the Location Provider that's part of the Google Play Services. Do we have any constraints that mean we should not use a Google service? (e.g. privacy concerns, or markets that have Android with an alternative app provider.) Turning a Location in to a country code requires a reverse-geocoder. The framework API docs have this to say about the Geocoder API:
I'm sure there's a variety of other indicators, other than the Location API, for various types of localization. What do we need to know for? How accurate does it have to be? How often does it need to be updated? |
Within the app, we have a screen that shows health recommendations and is going to link to your country's health org (the CDC, etc)'s page for recommendations. We also want to localize the app, so we should also figure out what language you want to use from the OS rather than asking the user. |
We should use device local information about language to show proper language setting and direct to proper website. No need to call for Location just for this. Website address scan be set together with i18n files in strings.xml targeting specific language. |
New ticket, #31 , for using locale to detect language and health authority |
No description provided.
The text was updated successfully, but these errors were encountered: