I’ve updated Xcode to 14.3 and suddenly I can’t “archive” my build but I can run it on my real devices/simulator.
Do you have any idea about what is happening?
thank you
Found this workaround on another thread that worked for me:
Solution by @vadimwe worked for me! 👍 in APPNAME/ios/App/Pods/Target Support Files/Pods-App/Pods-App-frameworks.sh replaced source="$(readlink "${source}")" with source="$(readlink -f "${source}")"
There were two instances of calls to readlink that I had to fix in the .sh file.