Sunil Bind
Sunil Bind

Reputation: 507

How to use social sharing in Ionic 3?

ionic version

enter image description here

I build app using Ionic 3. My app needed social sharing. I installed social sharing plugin from here https://ionicframework.com/docs/v3/native/social-sharing/ But error show

Upvotes: 2

Views: 2328

Answers (1)

Sudarshana Dayananda
Sudarshana Dayananda

Reputation: 5265

You installed the latest @ionic-native/social-sharing (v5+)

Fallback @ionic-native/social-sharing to v4+. The issue will be fixed.

Follow these steps:

npm uninstall --save @ionic-native/social-sharing

npm install --save @ionic-native/[email protected]

Upvotes: 3

Related Questions