Post

Replies

Boosts

Views

Activity

Reply to Framework Not Found with xcode 12
As @hishak noted adding this to end of my pod file fixed the error: post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64 i386" end end end Ref: https://github.com/flutter/flutter/issues/94914#issuecomment-992898782
Mar ’22