Cocoapods pod Install报错did not set the base configuration of your project

来源:互联网 发布:js设置input获取焦点 编辑:程序博客网 时间:2024/05/22 12:09

遇到一个小坑,记录一下,记得有事没事多去StackOver Flow看看,大神聚集地啊。。。。。。


pod install的时候竟然给我报这个错误


CocoaPods did not set the base configuration of your project because because your project already has a custom config set. In order for CocoaPods integration to work at all, please either set the base configurations of the target BluePlaquesLondonFramework to Pods/Target Support Files/Pods/Pods.debug.xcconfig or include the Pods/Target Support Files/Pods/Pods.debug.xcconfig in your build configuration.


先来看看老外怎么回答的

I had the same problem, but in Xcode 6.1.1 - what fixed it for me was to change the configuration file setting to None for the two Pods-related targets, then run pod install again.

The configuration file setting is found by selecting the project (not the target) and then the Info tab.


OK,差不多是这个意思,按着我这个操作一遍就好了

1.进入到指定的info tab



2。然后把configuratuions下面的设置全部清为none



3.最后再pod install一次,OK了。就这么愉快的解决了

0 0