I know there are several ways that I can get the list of all of the Locales supported by the device. Has anyone been able to get the list of locales that you have included in your app?
Using the following code I know I can get the list the device supports:
String[] languages = getAssets().getLocales();
or
String[] languages = Resources.getSystem().getAssets().getLocales();
But I want the list that is shipped w/
my app so i can compare it against the list that the phone supports to create a subset list depending on phone support and app support.
Obviously I could ship w/
a file that has the list of my supported languages, but this is not a route I want to take.