MissingPluginException(No implementation found for method init on channel plugins.flutter.io/google_sign_in) after publishing to Google Play Store

4,433

Solution 1

I had the same problem as you (same error message, using Flutter, only occuring after app store) and was able to figure it out by finding an analagous problem here: https://github.com/flutter/flutter/issues/65334

I added

    buildTypes {
        release {
           minifyEnabled false
           shrinkResources false
    ...

to my build.gradle file. You can also set both of those values to true and run flutter run --release to reproduce the issue locally. When you build with flutter build appbundle it shrinks by default whereas running locally does not, that's why you aren't seeing the issue when running locally. It has something to do with the google sign in code being trimmed. This is really a workaround.

Solution 2

add this library in .yaml

google_sign_in: ^0.0.2

then import this in your login screen

import io.flutter.plugins.GeneratedPluginRegistrant;

then add this to the onCreate function

@Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    GeneratedPluginRegistrant.registerWith(this);
  }
Share:
4,433
nickinspace
Author by

nickinspace

Updated on December 26, 2022

Comments

  • nickinspace
    nickinspace over 1 year

    I asked a similar question before, but I am having trouble with Google Sign-in after publishing my app to internal and closed testing on the Play store. It works perfectly well on emulators for both Android and iOS, works great on real devices when I run it from my computer in debug and release modes, but once published to the Play store, everything breaks. The error I get is

    MissingPluginException(No implementation found for method init on channel plugins.flutter.io/google_sign_in)

    Is there anything in particular I'm missing? I have a feeling this is a one-step solution and I just can't find it.

    • nickinspace
      nickinspace over 3 years
      I've also set up a verified OAuth Consent screen, eliminated facebook/apple sign-ins -- I just don't know what's going on. Everything works so nicely before I release to the Play Store!!
  • nickinspace
    nickinspace over 3 years
    How do I import that to my login screen? That's not dart right?
  • nickinspace
    nickinspace over 3 years
    This works -- I spent DAYS trying to figure this out. It also solved an issue where I couldn't even sign in with other Firebase Auth methods.