Good morning all,
I come to you for a problem during the compilation of my application for IOS, It is the first time that I use Xcode.
During compilation I encounter the following problem: ld: framework not found FBLPromises clang: error: linker command failed with exit code 1 (use -v to see invocation)
I followed the instructions from firebase to integrate it into my application. I notably installed COCOAPOD and created the Podfile file with the following instructions:
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
# Add the Firebase pod for Google Analytics
pod 'Firebase/Analytics'
# Add the pods for any other Firebase products you want to use in your app
# For example, to use Firebase Authentication and Cloud Firestore
pod 'Firebase/Auth'
pod 'Firebase/Firestore'
target 'iOS Push' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for iOS Push
end
No matter how much I search the internet for the same problem, I can't help but solve this problem. I already tried to reintegrate pot and redo Install podium and lots of other manipulation but still this problem.
thank you in advance for your help.