Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to set shared flag in Cocoa Pods Build schemes?

I have a project which is shared between several developers. If i run pod install, the project is created, but the build schemes are not shared.

To share the complete workspace between all devs, this build schemes must be shared. I have the possibility to do that after creation of the workspacen.

But, is there a way to set shared flag in Cocoa Pods Build schemes automaticaly in the pod file?

like image 201
Sam Avatar asked Oct 09 '14 14:10

Sam


People also ask

Is CocoaPods a ruby gem?

CocoaPods is built with Ruby and is installable with the default Ruby available on macOS. We recommend you use the default ruby. Using the default Ruby install can require you to use sudo when installing gems.


1 Answers

For development pods, add the following to the Podfile:

install! 'cocoapods',
         :share_schemes_for_development_pods => true

Reference at https://guides.cocoapods.org/syntax/podfile.html#install_bang

I don't think it is possible for non-development pods.

like image 62
Paul Beusterien Avatar answered Oct 11 '22 13:10

Paul Beusterien