Currently the JavaScript runtime on Android doesn't account for the user's locale when formatting dates and numbers. This affects methods like:
Date.prototype.toLocaleDateString()
With en-US this would print MM/DD/YYYY and with en-GB it would print DD/MM/YYYY, and also take time zones into account.
Number.prototype.toLocaleString()
With en-US it would print 1000 as 1,000 and with de-DE it would print 1.000.
We can include support for more locales in Expo for Android, but it will make the APK size about 2MB larger so we're looking to see what developers want.