Answers for "react native Undefined symbol: protocol descriptor for Swift.ExpressibleByFloatLiteral"

1

Undefined symbol: protocol descriptor for Swift.ExpressibleByFloatLiteral

// You need to exclude architecture arm64 if you are using M1 mac.
// Also add this code at the end of the pod file
post_install do |installer|
	installer.pods_project.targets.each do |target|
		target.build_configurations.each do |config|
			config.build_settings["ONLY_ACTIVE_ARCH"] = "NO"
		end
	end
end
// Do pod install, Clean the build folder and restart the 
// build it will resolve the issue.
Posted by: Guest on July-22-2021

Code answers related to "react native Undefined symbol: protocol descriptor for Swift.ExpressibleByFloatLiteral"

Code answers related to "Swift"

Browse Popular Code Answers by Language