Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Warining . Cocoa pods --> Pod install issue

Erroorr imageWhen pod install , get this warning .
How to solve the question? Please help me.Thank U very much.

[[!]Your Podfile requires that the plugin cocoapods-no-dev-schemes be installed. Please install it and try installation again.]

like image 943
Alisa_stranger Avatar asked Mar 12 '23 13:03

Alisa_stranger


1 Answers

If you have shown your podfile it will more helpful still you can try

sudo gem install cocoapods-no-dev-schemes and after it installs successfully you can try installing the pods again

Or

You can make the podfile structure to default structure in which you don't need any additional plugin like this:

platform :ios, '8.0'
use_frameworks!

target 'MyApp' do
  pod 'AFNetworking', '~> 2.6'
  pod 'ORStackView', '~> 3.0'
  pod 'SwiftyJSON', '~> 2.3'
end
like image 123
HardikDG Avatar answered Mar 15 '23 04:03

HardikDG