My android device's screen resolution is 1920x1080 px. I wrote the code which requests a full screen on button click:
document.documentElement.webkitRequestFullScreen();
When site enters to full screen mode the window
object size is (640, 360). Also same thing with the screen
object size is not the same as the device's screen resolution. Is it possible to increase the resolution?
P. S. I tested it on Chrome browser.