I am running into the same error with the Mobile Accessibility plugin. I’m building on a mac, I have followed all the different ways to install the plugin listed above and everything looks successful but once I build and install the app I am getting the “Native: tried calling MobileAccessibility.getTextZoomCallback, but the MobileAccessibility plugin is not installed.” followed by “Install the MobileAccessibility plugin: ‘ionic cordova plugin add phonegap-plugin-mobile-accessibility’”
A couple people that posted on here said that they were successful in installing the plugin and I’m not doubting that. What I am wondering is if anyone else tried to build and run the an app with this plugin installed. Have you been able to get a successful response from the getTextZoomCallback() function?
The documentation says to use: import { MobileAccessibility } from ‘ionic-native’;
Which causes its own error so I ended up switching the import to:
import {MobileAccessibility} from ‘@ionic-native/mobile-accessibility’;.
I’m just guessing that this is a very low usage plugin so it isn’t kept up to date which is fine but if it is no longer functioning with the latest version of ionic, would it be better to just remove it from the Ionic Native documentation?