docs(core): add little note about props locale

This commit is contained in:
Cilly Leang 2026-01-27 02:10:29 +11:00
parent 9cef464bf5
commit 88e44b1cbb
Signed by: cilly
GPG key ID: 6500251E087653C9

View file

@ -5,6 +5,8 @@ import java.util.Locale
@Suppress("ConstantLocale")
internal actual val platformSuperProps = PlatformProps(
device = android.os.Build.DEVICE,
// TODO: this only outputs language but not country (e.g. en instead of en-AU)
// .toLanguageTag() is close, but returns too much junk (e.g. en-AU-u-fw-mon)
systemLocale = Locale.getDefault().language,
osVersion = "${android.os.Build.VERSION.SDK_INT}",
)