ricnaaru / facebook_share

Other
0 stars 10 forks source link

fatal error: '../AppEvents/Internal/AAM/FBSDKMetadataIndexer.h' file not found #2

Open coderGirl9796 opened 3 years ago

coderGirl9796 commented 3 years ago

Hello, I'm getting this error in ios

In file included from /Users/bhumibachudasama/AndroidStudioProjects/gday-hive-app-flutter/ios/Pods/FBSDKShareKit/FBSDKShareKit/FBSDKShareKit/Internal/FBSDKVideoUploader.m:26: /Users/bhumibachudasama/AndroidStudioProjects/gday-hive-app-flutter/ios/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/FBSDKCoreKit+Internal.h:119:11: fatal error: '../AppEvents/Internal/AAM/FBSDKMetadataIndexer.h' file not found

import "../AppEvents/Internal/AAM/FBSDKMetadataIndexer.h"

coderGirl9796 commented 3 years ago

did a trick to solve this issue 1.downgrade the version of facebook_share plugin to. 0.0.1+1 2.run command in your project's terminal - pod cache clean —all
3.add below two pods in Podfile:

target 'Runner' do use_frameworks! use_modular_headers!

pod 'FBSDKCoreKit', '~> 6.0.0'
  pod 'FBSDKShareKit', '~> 6.0.0'

4.run command in your project's terminal - Pod install 5.run command in your project's terminal - pod update FBSDKShareKit

done, error removed