macos / Podfile에 입력을 해도 컴파일 할 때 버전 반영이 안될 경우가 있다. 버그 같다. Workaround는 해당 파일 하단의 아래 내용을 post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_macos_build_settings(target) end end 아래와 같이 수정한다. (원하는 버전으로 수정) post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_macos_build_settings(target) target.build_configuration..