Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 567
nickinspace Avatar asked Oct 15 '25 02:10

nickinspace


2 Answers

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.

like image 62
Zak Avatar answered Oct 17 '25 16:10

Zak


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);
  }
like image 44
Tharaka Dayanjana Avatar answered Oct 17 '25 18:10

Tharaka Dayanjana