Software⏱️ 2 min read📅 2026-05-31

How to Fix: App getting crash when click on GoogleSignIn button. Why?

App crashing when clicking on Google Sign-In button due to missing URL scheme support. To fix, add the required URL schemes in your app's Info.plist file.

Quick Answer: Add 'com.googleusercontent.apps.107731993306-6s44u18onibp6gi0ddj94si1aifshhg6' to the 'URL types' section of your app's Info.plist file, and ensure that your app is configured to handle these URL schemes.

The Google Sign-In SDK issue you're experiencing is likely due to the app not properly handling the URL scheme. This can be resolved by adding the required URL schemes to your app's Info.plist file.

🛠️ Step-by-Step Verified Fixes

Method 1: Registering URL Schemes

  1. Step 1: Open your app's project in Xcode and navigate to the Info.plist file.
  2. Step 2: In the Info.plist file, add a new key called 'URL types' and create an array with the following URL schemes: com.googleusercontent.apps.107731993306-6s44u18onibp6gi0ddj94si1aifshhg6
  3. Step 3: Save the changes to the Info.plist file and rebuild your app.

Method 2: Handling URL Schemes in Code

  1. Step 1: In your app's delegate file, add the following method to handle the URL schemes: [URLSchemeDelegate methods]
  2. Step 2: Implement the required protocol in your delegate class and handle the URL scheme notifications.

✨ Wrapping Up

By following these steps, you should be able to resolve the Google Sign-In SDK issue and prevent your app from crashing when clicking on the GoogleSignin button.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions