Application.systemLanguage is not working on android on the last unity 4.3 .
Can anyone test it? i have a samsung galaxy s2.
not work on Nexus 7 neither:(
this broked my games, where i can repair this?
@iktakgames, could you please file a bug report and drop the case number in this thread?
(Case 575720) Application.systemLanguage not worrs on Android on the last
But i dont receibed any response. Please i need a solution for this, because i need to upload my games because i have a bug in the game, but if upload with this, i will pain all my not english users…
Thanks
Tnx! I found the issue. If you need an urgent fix you could try grabbing the language through JNI.
AndroidJavaObject locale = new AndroidJavaClass("java/util/Locale").CallStatic<AndroidJavaObject>("getDefault");
string language = locale.Call<string>("getISO3Language");
Thanks! this works fine
Y used this for get the two lines code.