Fix “Some files could not be transferred (code 23)“ error in Xcode
Error rsync error: some files could not be transferred (code 23) Complete error rsync error: some files could not be transferred (code 23) at /AppleInternal/BuildRoot/Library/Caches/com.apple.bs/ Sources/rsync/rsync-54.120. 1/rsync/main. c (996) [sender=2.6.9] Command PhaseScriptExecution failed with a nonzero exit code Problem This error happens because there is…
Fix “Build input file cannot be found” error in Xcode
Error Build input file cannot be found Complete error Build input file cannot be found: ‘path/to/file’. Did you forget to declare this file as an output of a script phase or custom build rule which produces it? Problem This pretty not understandable error can happen…
Error “Missing file libarclite” (Xcode 14.3)
Error File not found: libarclite_iphone.a + Linker command failed Complete error: File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a Linker command failed with exit code 1 (use -v to see invocation) Problem This is error is connected to 3rd party libraries that have a minimum deployment target less than…
Error “Missing package product” for Swift Packages (SPM)
Error Missing package product <package name> Problem Have you added some Swift Packages and, after that everything worked perfectly, Xcode thrown this error? After multiple attempts, I found this solution that worked perfectly. Solution Close Xcode Open Terminal where the directory of your .xcodeproj is…
Error “No Such File or Directory” for 3rd Party Libraries
Error No such file or directory Complete error: /Users/<user>/Library/Developer/Xcode/DerivedData/<project>/Build/Products/Development-iphoneos/<library>.bundle: No such file or directory Problem This error can be really frustrating to debug, and so it was for me 😉 In my case XCode thrown this error on some SPM packages, which was so confusing….