0

I followed the tutorial SQLCipher tutorial from beginning to end.

Still i am getting 3 issues when i try to build the project. Please check the image below Error Description

Note: The libraries libcrypto.a and libsqlcipher.a are red in color. Does this an issue. Please check the image below Link binary with Libraries Can anyone please help me to fix this issue.

iNoob
  • 3,364
  • 2
  • 26
  • 33
surendher
  • 1,374
  • 3
  • 26
  • 52

1 Answers1

0

Red colors indicate that Xcode cannot find the file.

If the red file is the product of another project, build it first (probably by adding a dependency to make it automatically build.)

If the red file is the product of another target of the current project, be sure it builds first.

If the red file is one you are supplying to the project, but sure the paths are correct. You might delete the file and re-add it as an easy way to do this.

Walt Sellers
  • 3,806
  • 30
  • 35
  • The red file is product of another project that i imported to this project.It is showing error when i build it – surendher Feb 20 '14 at 09:09
  • If the red file is the product of a sub-project (one project referenced inside another project) there are 2 possible problems: (1). The sub-project does not have a configuration that matches the configuration chosen in the main project. The main project will pass the configuration name to the sub-project. If there is no match then "Release" will be built. (2). The sub-project's product is not being created in a folder expected by the outer project. (Check the various paths in the main project settings.) – Walt Sellers Feb 20 '14 at 09:18
  • Shall i share you the code, so you can fix it easily – surendher Feb 20 '14 at 09:30