Darin Wilson
Darin Wilson

Reputation: 169

Installing Firebase pod error Invalid Podfile

I'm trying to run this...

platform :ios. '9.0'
use frameworks!

pod 'Firebase', '>= 2.5.0'

but I keep getting this on the pod install

[!] Invalid `Podfile` file: syntax error, unexpected tSTRING_BEG, expecting '('
platform :ios. '9.0'
                ^. Updating CocoaPods might fix the issue.

Upvotes: 0

Views: 345

Answers (1)

naomimichiko
naomimichiko

Reputation: 693

Try changing the line

platform :ios. '9.0'

to

platform :ios, '9.0'

ie changing your period after ios to a comma

Upvotes: 5

Related Questions