Fixed language override on older Android versions

pull/200/head
M66B 3 years ago
parent 5504b93d05
commit 620dea7035

@ -73,6 +73,8 @@ public class ApplicationEx extends Application
EntityLog.log(context, "Set language=" + language + " locale=" + locale);
Locale.setDefault(locale);
Configuration config = new Configuration();
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q)
config.setTo(context.getResources().getConfiguration());
config.setLocale(locale);
return context.createConfigurationContext(config);
}

Loading…
Cancel
Save