Amr Kamal
Amr Kamal

Reputation: 244

firebase error W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found

And I get this error:

E/ERROR: com.google.firebase.FirebaseException: An internal error has occurred. [ OPERATION_NOT_ALLOWED ]
W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.

what is the wrong?

Upvotes: 10

Views: 25194

Answers (6)

Carl.G
Carl.G

Reputation: 309

This issue happened to me after changing the firebase rules. My IOS Simulator worked just fine but Android Emu did not. I fix this by wiping all data from my device in my emulator and then re-launching the EMU. Probably you dont even need to wipe data from emulated device.

Upvotes: 0

android developer
android developer

Reputation: 29

Make sure you have to tack care of

Internet Permission ,compile library and Enable only one Auth From firebase auth list not.

In my case i enable 2 Authentication from list Google and Email/Password, so that is not work but after disable Google.. then its work correctly.

I hope my answer is help you.

Upvotes: -3

CristianCotrena
CristianCotrena

Reputation: 258

Make sure your emulator has the Play Store.

When you do not have Play Store installed on the emulator, this error occurs.

enter image description here

Upvotes: 4

Ekene
Ekene

Reputation: 127

Log into your firebase console and Enable Email/Password Sign-In_Method, it should solve the issue.

Upvotes: 2

Angel Black
Angel Black

Reputation: 81

Try re sync your client with your Firebase app, and add again the .json file. In android studio 2.3 just click on tools>firebase and in the assistant check if your app is connected to.

Upvotes: 8

Tekhita Fanta
Tekhita Fanta

Reputation: 61

Check in your Firebase console that "anonymous auth" is allowed. It should solve your problem.

Also check INTERNET permission in your manifest. It so obvious, but...

Good Luck.

Upvotes: 0

Related Questions