For cordova android application, I created one css for 1080 x 1920 screen resolutions and accessing using media query
@media screen and (max-width: 680px) and (orientation:portrait) //Galaxy S5 compatible
or
@media screen and (device-height : 1920px) and (device-width : 1080px) and (orientation:portrait) // Galaxy S4 compatible
CSS works fine on S4 device, but seems to be enlarged and broken on S5 device which having same screen resolution as S4.
Meta data is defined as <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height" />
Please suggest what changes I need to make to resolve this issue and to use same CSS for Galaxy S4 and S5 devices