I am trying to run Aplication which I have downloaded from GitHub.
When I run get error unable to open file in target, I have Xcode 10.
I already searched f
Xcode
Terminal
pod install
I was trying to do pod install
after removing unwanted pod(steps 2,3 & 4), but it still was not working. Quitting Xcode (steps 1, 2, 3 & 5) worked.
I tried below and error went away !!
project name - SwiftExample
Went to Pods -> Info -> Configurations -> Debug Change to None for Pods-SwiftExample
Code compiles even after setting it back to original.
I can see many solutions already given there. But I believe the easiest way to resolve this problem is
That's it. The newly created .xcworkspace file will work without any problem.
Open your project file (project.pbxproj) and check of 'Pods' is added to the path before the 'Target Support Files' folder. Remove that and i got it to build fine.
If you suddenly start seeing this issue on an existing project, before you try anything else, try
In File -> Project setting -> select Legacy Build System
Make sure you have opened .xcworkspace file and pod installed properly.