Fitting in with native accessibility features
One issue with hybrid apps has been the difficulty of fitting in with the user's accessibility settings. Both, iOS and Android have numerous settings that provide accessibility assistance. The native SDKs usually respond to these settings nearly by default—that is, native apps can respond to the user's settings almost for free. And where work is necessary on the part of a native app, it's usually just a matter of reading a preference setting and responding accordingly (for example, increasing the font size).
Hybrid apps don't receive these benefits automatically, which means that they often operate in a vacuum where they aren't responding to the user's accessibility settings. This clearly marks the app as ill-behaved when most of the user's native apps respond to their changes in text size, captions, or what not, but your hybrid app does not.
Technically, because of Cordova's ability to use plugins, all of these settings could be presented to our...