I am trying to implement App Availability Feature in ionic. I have an app installed in my device and trying to check if that app exists from another app. But facing an issue in the same, getting the below error
1 Answers
3
votes
Possibly you are facing mismatch of ionic version of app and the plugin version you installed in your app. In Ionic V3 you no need to import from '../ngx';
Ionic V3 and V4 have Different plugin url
For Ionic v3 App availability
ionic cordova plugin add cordova-plugin-appavailability
npm install --save @ionic-native/app-availability@4
And for Ionic V4 App availability
ionic cordova plugin add cordova-plugin-appavailability
npm install @ionic-native/app-availability
npm install cmd is different for both version
Try this steps
- remove plugin
- Add plugin for ionic V3 compatible from here
- Try to build now
