Getting following warnings for build in Xcode 10 GM version
Skipping code signing because the target does not have an Info.plist file. (in targe
In Xcode 10 : Comment following lines from the Podfile
# Workaround for Cocoapods issue #7606
#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
It will solve the issue. Above lines we are using in Podfile due to "IBDesignable not works with the frameworks which links with CocoaPods"
IBDesignable's issue is fixed in Xcode 10
I have removed this lines and warning is gone away.
Hope this will help you :)