The new Xcode project has Debug and Release settings. I added a new one in "ProjectName> Info" called "development", which currently duplicates "debug".
I wanted to create a new scheme for creating an application in development mode, so I duplicated the scheme "Projectname" and named it "DevelopmentScheme".
I set the build configuration for “run” and “archive” to the new “development” configuration that I created.
I can still create the original circuit.
I can also build all the necessary libraries when the project is configured using the development scheme, but when I get to the linking phase, I get an error message:
ld: library not found for -lRNCookieManagerIOS clang: error: linker command failed with exit code 1 (use -v to see invocation)
Being relatively new to iOS development, I'm not quite sure what the problem is. Since I duplicated everything, does this not mean that they behave the same? Thoughts on what may differ from the original and the new scheme?
source share