0

I recently started developing a project using flutter on M1 mac, all my dependencies work fine except google_sign_in . the pod file and pubspec.yml file are tagged. image1, image2

Sen Alexandru
  • 1,953
  • 3
  • 19
  • 35
Chethan
  • 13
  • 3

2 Answers2

1

GoogleSigin package is not compatible with Apple silicon remove it from your project as it has now been a year and is unlikely to ever be supported

Alan Meier
  • 41
  • 4
0

1 - delete podfile, podfile.lock and pods folder from yourApp/ios folder

2 - run flutter clean

3 - run flutter pub get

4 - Go to the folder yourApp/ios and run pod update

5 - run flutter build ios from yourApp folder

Gianluca Bettega
  • 326
  • 4
  • 12