Reputation: 775
When I install bluetooth-serial to Ionic app its always give peer dependence warning how to resolve those. I add screenshot below.
Upvotes: 1
Views: 217
Reputation: 4954
The issue is that you dont have all of the npm packages installed that you need to run ionic-native/bluetooth-serial
. To fix those warning (and let bt-serial run properly) make sure you install all of the peer dependencies listed:
npm install rxjs@^5.5.11
npm install @ionic-native/[email protected]
npm install cordova-plugin-ionic@^5/0.0
Upvotes: 2