Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cocoapods 1.0: "xcodeproj was renamed to `project`. Please use that from now on."

Tags:

cocoapods

I do get the warning xcodeproj was renamed toproject. Please use that from now on. when running pod install with Cocoapods 1.0.

Also, [NSBundle bundleWithIdentifier:@"org.cocoapods.xyz"] returns nil.

With version 0.39.0 I don't get the warning and [NSBundle bundleWithIdentifier:@"org.cocoapods.xyz"] returns a valid bundle.

Does anyone know a solution for this?

like image 871
swalkner Avatar asked May 20 '16 08:05

swalkner


1 Answers

Looks to your Podfile. You have string like

xcodeproj 'MyProj/MyProj.xcodeproj'

just replace xcodeproj to project

project 'MyProj/MyProj.xcodeproj'

like image 177
pingwinator Avatar answered Oct 30 '22 22:10

pingwinator