Adrian Muñoz
Adrian Muñoz
Try to put this in your `podfile` ``` if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle" target.build_configurations.each do |config| config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO' end end ``` inside of: `target.build_configurations.each do |config|`
Try this: ``` target.build_configurations.each do |config| config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64" #add this line end ```
I don't have any idea. Maybe this [post](https://stackoverflow.com/questions/63607158/xcode-building-for-ios-simulator-but-linking-in-an-object-file-built-for-ios-f) could help you.