Font size difference caused by Android font size settings

I found the solution using a cordova plugin to disable the user preferred text zoom.

You can find the plugin here: https://github.com/phonegap/phonegap-mobile-accessibility and add in the platform ready event:

platform.ready().then(() => {
    [...]
    if(window.MobileAccessibility){
       window.MobileAccessibility.usePreferredTextZoom(false);
    }
    [...]
});
7 Likes