drashti-teco

Results 2 comments of drashti-teco

Hello @ElAdrixHD Can you please tell me how you solved above issue? I have tried like below.. ``` post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) target.build_configurations.each do |config| if target.respond_to?(:product_type)...

Hey @ElAdrixHD After applied above solution, ``` post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) target.build_configurations.each do |config| config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64" end end end ``` Now, I am getting only below...