Post

Replies

Boosts

Views

Activity

Reply to Warning: Error creating LLDB target at path. the specified architecture 'arm64-*-*' is not compatible with 'x86_64-apple-ios13.2.0-simulator'
Interesting addition, my Podfile specifies: platform :ios, '13.2' ... post_install do |pi| pi.pods_project.targets.each do |t|     t.build_configurations.each do |config|       config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'       config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.2'     end   end end Is the error from a framework that is not compatible with apple arm arm64?
Sep ’22