Platformexception(missing-config, googleservice-info.plist file not found and clientid was not provided programmatically., null, null)

Error: PlatformException

Error details:

  • Error code: missing-config
  • Error message: googleservice-info.plist file not found
  • Additional info: clientid was not provided programmatically

Explanation:

The error “PlatformException” is occurring due to missing configuration.
Specifically, the “googleservice-info.plist” file was not found and the client ID was not provided programmatically.

Example:

Let’s say you are developing an iOS app that uses Google services. You need to provide the “googleservice-info.plist” file that contains the necessary configuration details for the app to work with Google services.

Additionally, if you haven’t programmatically provided the client ID, it means that you have not specified the client ID in your code. The client ID is required to authenticate the app with the corresponding Google services.

To resolve this error, ensure that you have included the “googleservice-info.plist” file in your project and that it is in the correct location. Also, make sure to provide the client ID programmatically in your code.

Leave a comment