Google Signin error
Open the Firebase console and click on the settings icon.
You will see the list of the apps connected to your Firebase project
For Android
Open terminal inside your flutter project
cd android
./gradlew signingReport
orgradlew signingReport
Paste your SHA1 key
Download and replace the
google-services.json
flutter clean
IOS:
Configure your Firebase project
Select IOS
Enter your Bundle ID
Download credetials
Download and replace
GoogleService-info.plist
Add this to your info.plist
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>**INSERT HERE YOUR RESERVED_CLIENT_ID FROM GoogleService-Info.plist**</string>
</array>
</dict>
</array>
Last updated
Was this helpful?