3

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?

Cœur
  • 37,241
  • 25
  • 195
  • 267
Faiz Fareed
  • 1,498
  • 1
  • 14
  • 31

1 Answers1

10

I think your pod line is missing a '

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

Robski18
  • 306
  • 3
  • 12