Anytime I run "pod install --repo-update" in my terminal I get the following error in my terminal: Terminal Error Message
I am trying to link my app with firebase. It is supposed to be an iOS app, and despite updating my Podfile it still returns that error. I only define an iOS platform in my Podfile:
platform :ios, '15.6'
# platform :macos, '11.0'
And I have the following code commented out because a potential fix I saw said to do so, but it didn't work:
#post_install do |installer|
# installer.pods_project.targets.each do |target|
# Skip targets that are for pods. You might adjust this condition if your target names differ.
# next if target.name.start_with?("Pods")
# target.build_configurations.each do |config|
# config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.6'
# config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '11.0'
# end
# end
# end
I am very new to designing apps on flutter and am learning as I go. I apologize if this wasn't descriptive enough please let me know what else I need to include.