In my app i am using Library like "SalesforceSDKCore", "SalesforceAnalytics", "SmartStore". I am using xcode 13.3 .
in my podfile -
pod 'FMDB', :git => 'https://github.com/forcedotcom/fmdb', :branch => '2.7.2_xcode9'
pod 'SalesforceSDKCore', :git => "https://github.com/forcedotcom/SalesforceMobileSDK-iOS.git", :tag => "v5.3.0", :submodules => true
pod 'SmartStore', :git => "https://github.com/forcedotcom/SalesforceMobileSDK-iOS.git", :tag => "v5.3.0", :submodules => true
pod 'SmartSync', :git => "https://github.com/forcedotcom/SalesforceMobileSDK-iOS.git", :tag => "v5.3.0", :submodules => true
pod 'SalesforceAnalytics', :git => "https://github.com/forcedotcom/SalesforceMobileSDK-iOS.git", :tag => "v5.3.0", :submodules => true
When running the code i am getting isssue like:-
Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_SFSDKLogger", referenced from:
objc-class-ref in SFSDKSmartStoreLogger.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Please help me to resolve the issue.