0

I am developing an android application with Firebase and I want to use the email/password authentication that Firebase provides.

But I keep getting following error:

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

I have searched around, but I can't fix the problem.

KENdi
  • 7,576
  • 2
  • 16
  • 31
John
  • 447
  • 1
  • 8
  • 22

1 Answers1

1

In app/build.gradle include these new dependencies:

    compile 'com.google.firebase:firebase-auth:11.0.0'
    compile 'com.google.firebase:firebase-core:11.0.0'

and check in SDK tools Google Play Service and Google Repository asking for update, if yes then Update to latest version

Basavannevva
  • 304
  • 1
  • 6