When i type \"pod install\" in a correct directory I always get this
Analyzing dependencies
[!] Could not automatically select an Xcode project. Specify
For me below solution worked
Since Podfile and .xcodeproj is at same level, I added project 'oceanview.xcodeproj' at top of the file.
project 'oceanview.xcodeproj'
So my podfile looks like below,
platform :ios, '9.0' project 'abc.xcodeproj' #added this line target 'abc' do end
then run command pod install
pod install