GoogleSignIn-iOS icon indicating copy to clipboard operation
GoogleSignIn-iOS copied to clipboard

Signing for "GoogleSignIn-GoogleSignIn" requires a development team

Open hrabkin opened this issue 3 years ago • 0 comments

I have an error when use GoogleSign-In pod

"Signing for "GoogleSignIn-GoogleSignIn" requires a development team "

I can change it manually in Pods but in that case build machine on CI fails to run

P.S. I currently have this workaround in place:

post_install do |installer|
  installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
      end
  end
end

Not sure that the fix is robust enough. Could you add a change in your .podspec file or build settings please?

hrabkin avatar Sep 20 '22 12:09 hrabkin