Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cocoa pods issue after modify Pods file

Tags:

cocoapods

when I change Pods file I get this error after command pod install

/Users/mac/Documents/Projects/Test/Podfile:1: syntax error, unexpected tINTEGER, expecting '('
platform :ios, ‘7.0’
                     ^. Updating CocoaPods might fix the issue.

So how I can update it?

like image 761
Matrosov Oleksandr Avatar asked Nov 05 '13 13:11

Matrosov Oleksandr


1 Answers

Replace the 'curly quotes' around the platform with single quotes:

platform :ios, '7.0'
like image 189
Thomas Keuleers Avatar answered Jan 03 '23 15:01

Thomas Keuleers