skip to Main Content

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

2

Answers


  1. 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

    Login or Signup to reply.
  2. 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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search