got error after update Xcode version 14.3
here is error screenshot:-
need to solve it…
2
Reinstall the pod file with the command pod install. Also, make sure your pod file is updated. Use the command pod update.
pod install
pod update
Please follow this steps :
go into this file Open the file Pods/Targets Support Files/Pods-Runner/Pods-Runner-framework
if you can’t find this file just search in xcode with this text source="$(readlink "${source}")" you will get this file
Search source="$(readlink "${source}")" into file
Replace source="$(readlink "${source}")" to source="$(readlink -f "${source}")"
Hope this will help you! Thanks
Click here to cancel reply.
2
Answers
Reinstall the pod file with the command
pod install
.Also, make sure your pod file is updated. Use the command
pod update
.Please follow this steps :
go into this file Open the file Pods/Targets Support Files/Pods-Runner/Pods-Runner-framework
if you can’t find this file just search in xcode with this text source="$(readlink "${source}")" you will get this file
Search source="$(readlink "${source}")" into file
Replace source="$(readlink "${source}")" to source="$(readlink -f "${source}")"
Hope this will help you! Thanks