Error compiling Xcode with Firebase

I just installed the Firebase framework for Xcode (not using CocoaPods due to other unsolvable issues with this). I followed the Firebase Alternative Setup instructions from here (manually dragging the FireBase 2.5 Framework into my project).

The problem is that when I compile my application, I get 27 errors: screenshot

I just use the sample code on the Getting Started page.

In fact, all that I use so far is the first line, but that will not even create this. (var ref = Firebase (url: "my firebase URL here")

I am on Xcode 7.2 and Swift 2.1. My goal is iOS 9.2 using a simulator.

Please, help! Thanks.

PS. I should also add that libicucore.dylib and libC ++. Dylib is no longer displayed as libraries that you specify to be included in firebase.com/docs/ios/alternate-setup.html. Maybe this is connected? Someone mentioned libz.tbd the one that is currently in use? (which i use)

+4
ios xcode swift firebase
source share
1 answer

If you target 9.2, then the frameworks have changed to the following:

libicucore.dylib to libicucore.tbd

libc ++. dylib to lib ++. tbd

They are exactly the same, so use them instead, you must use them to make it work.

Comment by apple:

For those who are interested, .tbd files are the new "text stub" libraries "that provide a much more compact version of stub libraries for use in the SDK and help significantly reduce its download size.

+6
source share

All Articles