Could not automatically select an Xcode project
cocoapods, ios, xcode, xcode7
Solution
I had an old .xcodeproj-file in my folder, so there was 2 of them. I removed the old one and it works!
Problem
When i type "pod install" in a correct directory I always get this Analyzing dependencies ``` [!] Could not automatically select an Xcode project. Specify one in your Podfile like so: project 'path/to/Project.xcodeproj' ``` podfile ``` platform :ios, '8.0' use_frameworks! target 'Posting' do pod 'ALCameraViewController' end ``` I'm in the project directory where Podfile can be found.