My project just upgraded the "CalculateCalendarLogic" SDK to version 0.7.1, and now it can't build with the simulator on chip Apple M serial.
I noticed that this version added the following two lines of code (Refer link), which included arm64 in Excluded Architectures in my build settings.I followed some suggestions as shown below, but they only changed the settings in the pods project, not in the build settings of my project.
post_install do |installer| installer.pods_project.build_configurations.each do |config| config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "" endend
How can I remove arm64 from the Excluded Architectures in my project (red arrow) using code (e.g., using the Podfile or anything else)?