When i type \"pod install\" in a correct directory I always get this
Analyzing dependencies
[!] Could not automatically select an Xcode project. Specify
To address this, you'll need to add the correct path to your project.xcodeproj
. Having this one fixed, It's very likely you'll need to provide the path to your project.xcworkspace
. The code below addresses both issues.
target 'your-app-bundle-name' do
platform :ios, '8.0'
workspace 'path/to/your/project.xcworkspace/'
project 'path/to/your/project.xcodeproj/'
pod 'ALCameraViewController'
end