How do I use Parse if libz.dylib and libsqlite3.dylib are missing in Xcode 7 but the .tbd version exists. I am just trying to setup Push Notifications. How do I get this to
In XCode 7 the *.dylib files are now *.tbd files, just search for the library you want and change the extension to .tbd
Example:
libz.dylib -> libz.tbd libstdc++.dylib -> libstdc++.tbd
Thanks