Could not automatically select an Xcode project

后端 未结 21 764
灰色年华
灰色年华 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:16

    It is taking single declaration for each target. Add line at top of the file after platform:

    project '.xcodeproj'
    
    target '' do
     #bla bla bla
    end
    
    target '-tvOS' do
     #bla bla bla
    end
    
    

提交回复
热议问题