In addition, to normal designing for Android Platrform, it need to add support for Density-independent pixels (dp) and Scaleable pixels (sp) for text.
Android useds 'dp' instead of 'pt' from iOS.
Offitial documentation from Material Designs specs here: https://material.io/guidelines/layout/units-measurements.html#units-measurements-density-independent-pixels-dp https://material.io/guidelines/layout/units-measurements.html#units-measurements-scaleable-pixels-sp
'dp' calculates in that way: screen density = screen width (or height) in pixels / screen width (or height) in inches dp = (width in pixels * 160) / screen density
Many thanks!