Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SWIFT

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.
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Undefined #protocol #descriptor
ADD COMMENT
Topic
Name
6+2 =