I can't seem to get past this error and don't know why. I'm running xcode 4.6.3 The project's ios deployment target says iOS 6.1 the base sdk is 6.1

My Podfile is:

# Podfile
platform :ios  
target :fubarTests, :exclusive => true do 
 pod 'Kiwi' 
end 

and when I try to run pod install from the command line I get the error about the target being iOS 4.3.

Why does it think my target is 4.3 and how can I change it?

2

There are 2 best solutions below

0
On

You need to specify

platform :ios, '6.1'
1
On

It's no longer necessary to specify the platform and version. For me I just deleted the line beginning platform and everything started working.