After updating to Xcode 14 I’m getting the following error:
Signing for "GoogleSignIn-GoogleSignIn" requires a development team. Select a development team in the Signing & Capabilities editor.`
I’ve tried doing pod update but it doesn’t work.
After updating to Xcode 14 I’m getting the following error:
Signing for "GoogleSignIn-GoogleSignIn" requires a development team. Select a development team in the Signing & Capabilities editor.`
I’ve tried doing pod update but it doesn’t work.
6
Answers
I had the same issue after switching to Xcode 14. Add this to your podfile and call
pod install
. This will permanently fix the issue.From the target POD Select
then go to the team drop list and select your team
Add this to your podfile and call pod install
For me, for my flutter project after upgrading my Xcode:
Note: Do not forget to change your Development Team Code.
I recommend you update to the latest React Native version (at time of writing:
v0.70.3
) to get their fix (https://github.com/facebook/react-native/issues/34673) for the code signing change to XCode14You can check your latest react native package version with
yarn list --pattern react-native
in your project rootAfter updating either:
ios/Podfile
with the followingwhere
YOUR_DEVELOPMENT_TEAM_ID
is replaced with the actual valueor
It is working on my flutter project
Please, don’t select a team, you don’t need it
remove "Pods" folder (project_name>ios>Pods)
remove "Podfile.lock" file (project_name>ios>Podfile.lock)
open "Podfile" file (project_name>ios>Podfile) and change
to =>