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
Asked
Active
Viewed 491 times
0

Sen Alexandru
- 1,953
- 3
- 19
- 35

Chethan
- 13
- 3
2 Answers
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
-
is there any workaround for adding that ? – Chethan Jan 22 '22 at 07:28
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
-
-
added a more complete solution, please upvote if it solves your problem – Gianluca Bettega Feb 08 '22 at 14:32