[ BUG ] : Update FBSdk version
Plugin name appinio_social_share 0.3.2
Describe the bug In my flutter i am using flutter_facebook_auth: ^7.1.1 package and appinio_social_share 0.3.2. Both have different FBSdk version on iOS platforms so during pod install it throws error due to non compatibility of versions.
I have the same problem.
I had to downgrade the version:
flutter_facebook_auth: 6.2.0
Temporary fix to implement until an official fix appears:
- copy the plugin folder found in ios/.symlinks/plugins/appinio_social_share
- paste inside [flutter_app]/packages/
- point the version inside pubspec.yaml to packages/appinio_social_share
- modify inside that folder ios/appinio_social_share.podspec line 18 and 19 with 17.1.0
I hope it helps you.
I had downgraded facebook auth plugIn to flutter_facebook_auth: 7.1.0 and it worked.
Temporary fix to implement until an official fix appears: copy the plugin folder found in ios/.symlinks/plugins/appinio_social_share, paste inside [flutter_app]/packages/, point the version inside pubspec.yaml to packages/appinio_social_share, modify inside that folder ios/appinio_social_share.podspec line 18 and 19 with 17.1.0, I hope it helps you.
thanks @thomqr this works on my end