Could not automatically select an Xcode project

后端 未结 21 761
灰色年华
灰色年华 2021-02-02 06:03

When i type \"pod install\" in a correct directory I always get this

Analyzing dependencies

[!] Could not automatically select an Xcode project. Specify          


        
21条回答
  •  悲哀的现实
    2021-02-02 06:34

    You should specific project path inside pod file

    platform :ios, '8.0'
       use_frameworks!
    
       project 'PATH_TO_PROJECT/YOUR_PROJECT_NAME.xcodeproj'
        target 'Posting' do
        pod 'ALCameraViewController'
    
    end
    

提交回复
热议问题