iOS Swift No Such File or Directory in Debug-Iphoneos

iOS Swift No Such File or Directory In Debug-iphoneos

I have similar issues in the past and doing the following work for me. Hope your problem is same as mine:

  1. Close xCode
  2. Go to this folder Group
    /Users/arthuraraujo/Library/Developer/Xcode/DerivedData/Anti-Social_Club-gizjofrkxroutxezxlbuadlvpwbo/Build/Products/Debug-iphoneos/
    and delete Anti-Social.
  3. Restart xCode, clean & build.

Xcode- 7: No such file or directory

do following two things I might solve your problem.

  1. Product -> Clean and build folder
  2. Go to finder -> library -> Developer -> Xcode -> Derived data
    delete that folder

or check screen shot may be this is your problem
Sample Image

and then check

No such file or directory in xcode when using React libraries

As you clean the project so derived data also gets clear, but still, delete derive data manually.

Hope this helps.

Xcode error while archiving: No such file or directory

If you are including frameworks or libraries in your project, make sure that you included them from the correct location. I ran into a similar situation where I was trying to embed a framework and it was pulling it from the DerivedData folder rather than the actual location.

It might be helpful to remove embedded frameworks in your Project file and then include them again. Make sure that the framework location is the actual path to the library relative to your project and not the simulator files.

Firebase integrating into IOS project - No such file or directory

I found the answer: there were spaces in my app project folder and app projects name, Xcode and Cocoapods are not accepting these. I created a new project a project name without spaces, no problems at all! Thanks all for your help!

Xcode Error : No such file or directory when building

I finally find somewhat by chance an answer to my problem.

I've opened the .xcodeproj file in finder, and then edit project.pbxproj.
In this file, I've founded a line :

84635D6F1C22F90100C55AB2 /* AFNetworking */ = {isa = PBXFileReference; lastKnownFileType = folder; name = AFNetworking; path = "/Users/admin/Desktop/My_path/My Project/Product-name/Sub Folder/AFNetworking"; sourceTree = "<absolute>"; };

And retyping it properly made the trick.

Error: Make Directory: No such file or directory

You have spaces in your watch app Project name.

This will lead to problems with file path, since the spaces aren't being escaped and the path isn't enclosed by double quotes.

  • For the first issue, the _WatchKitStub file couldn't be removed since the path wasn't escaped, so the file couldn't be found.

  • That triggered the second issue, when the now-quoted path couldn't be deleted (since the directory wasn't empty because the earlier command failed).

How to fix this issue:

You should create a new watch app target named TennisTrackerWK, change the target for your existing source files, then delete the old watch app target.



Related Topics



Leave a reply



Submit