How to make a function in the application that will recognize when a user enters the application his region and automatically detect the language of the region?
1 Like
muneer
September 3, 2021, 2:38pm
2
Try this in a web viewer
it will display the region.
Another trick (for Android only)
Add a web viewer to your screen and in the URL add this
data:text/html,<meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<h4>Unix To Standard Date</h4>
<div id="DisplayDate"></div>
<script>
document.getElementById('DisplayDate').innerHTML = new Date(162984485300).toString();
</script>
You should see the human readable date of the Unix date number given.
Of course you can put this string in a variable and change thβ¦
1 Like