Faiz Fareed
Faiz Fareed

Reputation: 1548

Invalid `Podfile` file: unterminated string meets end of file

I am trying to install pod file but getting following error :

Faizs-MacBook-Pro:newj faizfareed$  pod install

[!] Invalid `Podfile` file: unterminated string meets end of file.

 #  from /Users/faizfareed/Desktop/NewJson/NewJ/Podfile:4
 #  -------------------------------------------
 #  
 >  pod 'AFNetworking', '~> 3.0
 #  -------------------------------------------

Here goes detailed picture of command line tool -

error

could anyone help me resolving this issue?

Upvotes: 3

Views: 3504

Answers (1)

Robski18
Robski18

Reputation: 306

I think your pod line is missing a '

Should be: pod 'AFNetworking', '~> 3.0'

Upvotes: 10

Related Questions