For Xcode 9.+ version You have to downgrade your pod repository to remove this problem.
For this what you have to do.
Steps which you have to follow
sudo gem list cocoapods
sudo gem uninstall cocoapods
sudo gem install cocoapods -v 1.4.0
Go to your project Directory and Update Your Pod like
pod update
Clear your project as well as Derived Data.Build and run your project.
This error will remove after this.
ADD This Script on your POD File
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings.delete('CODE_SIGNING_ALLOWED')
config.build_settings.delete('CODE_SIGNING_REQUIRED')
end
end
Note:- if you are facing this issues on XCODE 10.+ Follow all the steps with sudo gem install cocoapods instead of sudo gem install cocoapods -v 1.4.0 it works for me.
Hope this will help you.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…