skip to Main Content

got error after update Xcode version 14.3

here is error screenshot:-
enter image description here

need to solve it… Xcode version

2

Answers


  1. Reinstall the pod file with the command pod install.
    Also, make sure your pod file is updated. Use the command pod update.

    Login or Signup to reply.
  2. Please follow this steps :

    1. go into this file Open the file Pods/Targets Support Files/Pods-Runner/Pods-Runner-framework

    2. if you can’t find this file just search in xcode with this text source="$(readlink "${source}")" you will get this file

    3. Search source="$(readlink "${source}")" into file

    4. Replace source="$(readlink "${source}")" to source="$(readlink -f "${source}")"

    Hope this will help you! Thanks

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search