I created a new Xcode project, added the \'Firebase\' pod to my pod file and installed it, and added the Google-services.plist file and the rest according to the Firebase docume
On your Podfile, add additional line of
pod 'Firebase/Database'
Then on your code section
import FirebaseDatabase
And it should work now, with the following code:
var ref: DatabaseReference!