I am getting an issue where I cannot get my App to compile for Catalyst due to Firebase Analytics.
I am getting the following error:
FIRAnalyticsConnector(FIRAnalyticsConnector_03d6aa66122ddf8e6248126c55bd74f9.o), building for Mac Catalyst, but linking in object file built for iOS Simulator
I have tried many solutions posted online, and none have worked for me.
Does anyone know how I can go about fixing/how to modify my podfile correctly.
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target ‘AppName’ do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for AppName
# add the Firebase pod for Google Analytics
pod 'Firebase/Analytics'
pod 'Firebase/Database'
pod 'Firebase/Auth'
pod 'Firebase/Storage'
# add pods for any other desired Firebase products
# https://firebase.google.com/docs/ios/setup#available-pods
pod 'lottie-ios'
target 'AppNameTests' do
inherit! :search_paths
# Pods for testing
end
target 'AppNameUITests' do
# Pods for testing
end
end