I am trying to use the firebase-client-jvm:2.5.2.jar libaries to authenticate with a New Google hosted firebase app with the following code:
ref.authWithPassword("[email]", "[password]", new Firebase.AuthResultHandler() {
@Override
public void onAuthenticated(AuthData authData) {
System.out.println("User ID: " + authData.getUid() + ", Provider: " + authData.getProvider());
}
@Override
public void onAuthenticationError(FirebaseError firebaseError) {
// there was an error
System.out.println(firebaseError.getMessage());
}
});
I keep getting this error:
"The specified authentication provider is not enabled for this Firebase"I checked the console for my app and I have a user that corresponds to the email and password provider and I have Email/Password Sign In Provider Enabled for this project.
Does google support the old firebase JVM client libraries?