[iOS] Resolving Conflicts Between 'Facebook-iOS-SDK' Installed via CocoaPod and 'FacebookSDK.framework'
In iOS app development, there were cases where both “Facebook-iOS-SDK” installed via CocoaPod and “FacebookSDK.framework” existed in the project.
This is because when installing the “Parse” library via CocoaPod, “Facebook-iOS-SDK” gets installed as a dependency.
Since the project wants to use the directly loaded “FacebookSDK.framework” instead of the CocoaPod-installed “Facebook-iOS-SDK”, we need to exclude “Facebook-iOS-SDK” from the build target.
After that, just build Pods as usual and you’re good to go.
That’s all from the Gemba.