Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

libz.dylib libsqlite3.dylib not within Xcode 7, Parse not saving data

I am trying to work with Parse on an App, I am new to swift. But I downloaded Xcode 7 and it seems libz.dylib libsqlite3.dylib are missing and when I compile and build it is done successfully yet Parse does not show any data save. I tried adding -lz and -lsqlite3 onto "Other Linker Flags" yet that was not able to solve the issue. Anyone know how to add these libraries in?

like image 274
Ace Avatar asked Sep 18 '15 15:09

Ace


1 Answers

  1. Go to Build Phases > Link Binary with Librairies > + > Add other...
  2. Once in the file selection window do "CMD"+Shift+G (Go to folder) and type /usr/lib/. From /usr/lib/ you can add libz.dylib and libsqlite3.dylib.

https://forums.developer.apple.com/message/9176#9176

like image 135
jayesh rajput Avatar answered Nov 16 '22 12:11

jayesh rajput