Post

Replies

Boosts

Views

Activity

Reply to Xcode 12 beta 4 - error compiling for Simulator
For people facing this issue, @kiji123's answer actually worked for me Just make sure you're setting this "Build active architecture" option on the pods targets as well, you can do this by adding this to your Podfile: post_install do |installer|   installer.pods_project.targets.each do |target|   	target.build_configurations.each do |config|    	 config.build_settings['ONLY_ACTIVE_ARCH'] = 'YES'   	end   end end and running pod install
Aug ’20