Android: Firebase LogIn failed password is invalid or the user does not have a password











up vote
0
down vote

favorite
2












I'm trying to create a simple app with user's profile's using firebase and I've got a problem. Sign Up function works well and I can see registered accounts in my Firebase console, but Sign In doesn't works well. I've got "password is invalid or the user does not have a password." exception. Can anyone help me with this please. My method to LogIn typed below.



 private void userLogin(){
String email = emailText.getText().toString().trim();
String password = passwordText.getText().toString().trim();


if (TextUtils.isEmpty(email)){
Toast.makeText(this,"Please enter email", Toast.LENGTH_SHORT).show();
return;
}
if (TextUtils.isEmpty(password)) {
Toast.makeText(this,"Please enter password", Toast.LENGTH_SHORT).show();
return;
}
firebaseAuth.signInWithEmailAndPassword(email, password)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
if(task.isSuccessful()){
Toast.makeText(LogIn.this,"You are logged in", Toast.LENGTH_SHORT).show();
}
else{
Toast.makeText(LogIn.this,"MISTAKE", Toast.LENGTH_SHORT).show();
Log.d("z", "onComplete: Failed=" + task.getException().getMessage());
}
}
});
}


LogCat:



    05-13 04:49:17.944 10714-10714/? I/art: Not late-enabling -Xcheck:jni (already on)
05-13 04:49:17.944 10714-10714/? W/art: Unexpected CPU variant for X86 using defaults: x86
05-13 04:49:17.964 10714-10721/? E/art: Failed sending reply to debugger: Broken pipe
05-13 04:49:17.964 10714-10721/? I/art: Debugger is no longer active
Starting a blocking GC Instrumentation
05-13 04:49:18.144 10714-10714/? W/System: ClassLoader referenced unknown path: /data/app/com.example.gmachine.mychat-1/lib/x86
05-13 04:49:18.231 10714-10714/? D/FirebaseAuth: Notifying id token listeners about user ( KUXl4u7sy6OdwE0P3fmCRWyHugz1 ).
05-13 04:49:18.250 10714-10714/? D/FirebaseAuth: Notifying id token listeners about user ( KUXl4u7sy6OdwE0P3fmCRWyHugz1 ).
05-13 04:49:18.258 10714-10714/? D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
05-13 04:49:18.324 10714-10714/? V/FA: Registered activity lifecycle callback
05-13 04:49:18.328 10714-10714/? I/FirebaseInitProvider: FirebaseApp initialization successful
05-13 04:49:18.333 10714-10714/? I/InstantRun: starting instant run server: is main process
05-13 04:49:18.354 10714-10738/? V/FA: Collection enabled
App package, google app id: com.example.gmachine.mychat, 1:411464926772:android:67ab72bb5465b580
05-13 04:49:18.354 10714-10738/? I/FA: App measurement is starting up, version: 12451
To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
05-13 04:49:18.355 10714-10738/? I/FA: To enable faster debug mode event logging run:
adb shell setprop debug.firebase.analytics.app com.example.gmachine.mychat
05-13 04:49:18.355 10714-10738/? D/FA: Debug-level message logging enabled
05-13 04:49:18.372 10714-10738/? V/FA: Cancelling job. JobID: 67470213
05-13 04:49:18.424 10714-10714/? W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
05-13 04:49:18.430 10714-10738/? V/FA: Connecting to remote service
05-13 04:49:18.432 10714-10714/? V/FA: onActivityCreated
05-13 04:49:18.503 10714-10738/? V/FA: Connection attempt already in progress
05-13 04:49:18.590 10714-10738/? I/FA: Tag Manager is not found and thus will not be used
05-13 04:49:18.600 10714-10738/? D/FA: Logging event (FE): screen_view(_vs), Bundle[{firebase_event_origin(_o)=auto, firebase_screen_class(_sc)=LogIn, firebase_screen_id(_si)=-7531630852293217533}]
05-13 04:49:18.617 10714-10738/? V/FA: Connection attempt already in progress
05-13 04:49:18.618 10714-10738/? V/FA: Connection attempt already in progress
05-13 04:49:18.622 10714-10738/? V/FA: Activity resumed, time: 28255253
05-13 04:49:18.650 10714-10714/? D/FirebaseApp: Notifying auth state listeners.
Notified 0 auth state listeners.
05-13 04:49:18.651 10714-10714/? D/FirebaseApp: Notifying auth state listeners.
Notified 0 auth state listeners.
05-13 04:49:18.736 10714-10743/? I/OpenGLRenderer: Initialized EGL, version 1.4
05-13 04:49:18.736 10714-10743/? D/OpenGLRenderer: Swap behavior 1
05-13 04:49:18.737 10714-10743/? W/OpenGLRenderer: Failed to choose config with EGL_SWAP_BEHAVIOR_PRESERVED, retrying without...
05-13 04:49:18.737 10714-10743/? D/OpenGLRenderer: Swap behavior 0
05-13 04:49:18.758 10714-10743/? D/EGL_emulation: eglCreateContext: 0xa9b858a0: maj 2 min 0 rcv 2
05-13 04:49:18.818 10714-10743/? D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 04:49:18.858 10714-10714/? W/art: Before Android 4.1, method int android.support.v7.widget.DropDownListView.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
05-13 04:49:18.866 10714-10743/? D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 04:49:18.991 10714-10738/com.example.gmachine.mychat D/FA: Connected to remote service
05-13 04:49:18.991 10714-10738/com.example.gmachine.mychat V/FA: Processing queued up service tasks: 4
05-13 04:49:24.124 10714-10738/com.example.gmachine.mychat V/FA: Inactivity, disconnecting from the service
05-13 04:49:28.720 10714-10719/com.example.gmachine.mychat I/art: Do partial code cache collection, code=27KB, data=29KB
05-13 04:49:28.722 10714-10719/com.example.gmachine.mychat I/art: After code cache collection, code=27KB, data=29KB
Increasing code cache capacity to 128KB
05-13 04:49:30.937 10714-10714/com.example.gmachine.mychat W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
05-13 04:49:33.192 10714-10719/com.example.gmachine.mychat I/art: Do partial code cache collection, code=62KB, data=55KB
After code cache collection, code=62KB, data=55KB
Increasing code cache capacity to 256KB
05-13 04:49:34.038 10714-10714/com.example.gmachine.mychat W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
05-13 04:49:38.664 10714-10714/com.example.gmachine.mychat W/System: ClassLoader referenced unknown path: /system/priv-app/PrebuiltGmsCore/lib/x86
05-13 04:49:38.664 10714-10714/com.example.gmachine.mychat D/ApplicationLoaders: ignored Vulkan layer search path /system/priv-app/PrebuiltGmsCore/lib/x86:/system/fake-libs:/system/priv-app/PrebuiltGmsCore/PrebuiltGmsCore.apk!/lib/x86:/system/lib:/vendor/lib for namespace 0xa9d54090
05-13 04:49:38.695 10714-10714/com.example.gmachine.mychat W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
05-13 04:49:38.695 10714-10714/com.example.gmachine.mychat W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzal@1b80aea
05-13 04:49:38.717 10714-10988/com.example.gmachine.mychat W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
05-13 04:49:38.723 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
[FirebaseAuth:] Preparing to create service connection to gms implementation
05-13 04:49:39.351 10714-10714/com.example.gmachine.mychat D/z: onComplete: Failed=The password is invalid or the user does not have a password.
05-13 04:49:39.493 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 04:49:39.529 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 04:54:38.844 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
[FirebaseAuth:] Preparing to create service connection to gms implementation
05-13 05:02:01.317 10714-10739/com.example.gmachine.mychat W/System: ClassLoader referenced unknown path: /data/data/com.example.gmachine.mychat/lib
05-13 05:02:01.346 10714-19878/com.example.gmachine.mychat V/FA: Recording user engagement, ms: 762757
05-13 05:02:01.347 10714-19878/com.example.gmachine.mychat V/FA: Connecting to remote service
05-13 05:02:01.348 10714-19878/com.example.gmachine.mychat V/FA: Activity paused, time: 29018004
05-13 05:02:01.408 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 05:02:01.416 10714-19878/com.example.gmachine.mychat D/FA: Logging event (FE): user_engagement(_e), Bundle[{firebase_event_origin(_o)=auto, engagement_time_msec(_et)=762757, firebase_screen_class(_sc)=LogIn, firebase_screen_id(_si)=-7531630852293217533}]
05-13 05:02:01.535 10714-10714/com.example.gmachine.mychat V/FA: onActivityCreated
05-13 05:02:01.538 10714-19878/com.example.gmachine.mychat V/FA: Connection attempt already in progress
05-13 05:02:01.663 10714-19878/com.example.gmachine.mychat V/FA: Connection attempt already in progress
Activity resumed, time: 29018325
05-13 05:02:02.308 10714-19878/com.example.gmachine.mychat D/FA: Connected to remote service
05-13 05:02:02.308 10714-19878/com.example.gmachine.mychat V/FA: Processing queued up service tasks: 3
05-13 05:02:02.310 10714-10714/com.example.gmachine.mychat I/Choreographer: Skipped 33 frames! The application may be doing too much work on its main thread.
05-13 05:02:02.317 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 05:02:02.380 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 05:02:02.393 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 05:02:07.340 10714-19878/com.example.gmachine.mychat V/FA: Inactivity, disconnecting from the service
05-13 05:02:11.505 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 05:02:11.772 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 05:02:13.726 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 05:02:14.138 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 05:02:29.855 10714-10714/com.example.gmachine.mychat W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
05-13 05:02:29.940 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 05:02:30.353 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 05:02:33.796 10714-10714/com.example.gmachine.mychat W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzal@1b80aea
05-13 05:02:33.797 10714-10988/com.example.gmachine.mychat W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
05-13 05:02:33.797 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
[FirebaseAuth:] Preparing to create service connection to gms implementation
05-13 05:02:34.840 10714-10714/com.example.gmachine.mychat D/z: onComplete: Failed=The password is invalid or the user does not have a password.
05-13 05:02:34.889 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 05:02:34.913 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
05-13 05:07:33.860 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
[FirebaseAuth:] Preparing to create service connection to gms implementation









share|improve this question


























    up vote
    0
    down vote

    favorite
    2












    I'm trying to create a simple app with user's profile's using firebase and I've got a problem. Sign Up function works well and I can see registered accounts in my Firebase console, but Sign In doesn't works well. I've got "password is invalid or the user does not have a password." exception. Can anyone help me with this please. My method to LogIn typed below.



     private void userLogin(){
    String email = emailText.getText().toString().trim();
    String password = passwordText.getText().toString().trim();


    if (TextUtils.isEmpty(email)){
    Toast.makeText(this,"Please enter email", Toast.LENGTH_SHORT).show();
    return;
    }
    if (TextUtils.isEmpty(password)) {
    Toast.makeText(this,"Please enter password", Toast.LENGTH_SHORT).show();
    return;
    }
    firebaseAuth.signInWithEmailAndPassword(email, password)
    .addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
    @Override
    public void onComplete(@NonNull Task<AuthResult> task) {
    if(task.isSuccessful()){
    Toast.makeText(LogIn.this,"You are logged in", Toast.LENGTH_SHORT).show();
    }
    else{
    Toast.makeText(LogIn.this,"MISTAKE", Toast.LENGTH_SHORT).show();
    Log.d("z", "onComplete: Failed=" + task.getException().getMessage());
    }
    }
    });
    }


    LogCat:



        05-13 04:49:17.944 10714-10714/? I/art: Not late-enabling -Xcheck:jni (already on)
    05-13 04:49:17.944 10714-10714/? W/art: Unexpected CPU variant for X86 using defaults: x86
    05-13 04:49:17.964 10714-10721/? E/art: Failed sending reply to debugger: Broken pipe
    05-13 04:49:17.964 10714-10721/? I/art: Debugger is no longer active
    Starting a blocking GC Instrumentation
    05-13 04:49:18.144 10714-10714/? W/System: ClassLoader referenced unknown path: /data/app/com.example.gmachine.mychat-1/lib/x86
    05-13 04:49:18.231 10714-10714/? D/FirebaseAuth: Notifying id token listeners about user ( KUXl4u7sy6OdwE0P3fmCRWyHugz1 ).
    05-13 04:49:18.250 10714-10714/? D/FirebaseAuth: Notifying id token listeners about user ( KUXl4u7sy6OdwE0P3fmCRWyHugz1 ).
    05-13 04:49:18.258 10714-10714/? D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
    05-13 04:49:18.324 10714-10714/? V/FA: Registered activity lifecycle callback
    05-13 04:49:18.328 10714-10714/? I/FirebaseInitProvider: FirebaseApp initialization successful
    05-13 04:49:18.333 10714-10714/? I/InstantRun: starting instant run server: is main process
    05-13 04:49:18.354 10714-10738/? V/FA: Collection enabled
    App package, google app id: com.example.gmachine.mychat, 1:411464926772:android:67ab72bb5465b580
    05-13 04:49:18.354 10714-10738/? I/FA: App measurement is starting up, version: 12451
    To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
    05-13 04:49:18.355 10714-10738/? I/FA: To enable faster debug mode event logging run:
    adb shell setprop debug.firebase.analytics.app com.example.gmachine.mychat
    05-13 04:49:18.355 10714-10738/? D/FA: Debug-level message logging enabled
    05-13 04:49:18.372 10714-10738/? V/FA: Cancelling job. JobID: 67470213
    05-13 04:49:18.424 10714-10714/? W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
    05-13 04:49:18.430 10714-10738/? V/FA: Connecting to remote service
    05-13 04:49:18.432 10714-10714/? V/FA: onActivityCreated
    05-13 04:49:18.503 10714-10738/? V/FA: Connection attempt already in progress
    05-13 04:49:18.590 10714-10738/? I/FA: Tag Manager is not found and thus will not be used
    05-13 04:49:18.600 10714-10738/? D/FA: Logging event (FE): screen_view(_vs), Bundle[{firebase_event_origin(_o)=auto, firebase_screen_class(_sc)=LogIn, firebase_screen_id(_si)=-7531630852293217533}]
    05-13 04:49:18.617 10714-10738/? V/FA: Connection attempt already in progress
    05-13 04:49:18.618 10714-10738/? V/FA: Connection attempt already in progress
    05-13 04:49:18.622 10714-10738/? V/FA: Activity resumed, time: 28255253
    05-13 04:49:18.650 10714-10714/? D/FirebaseApp: Notifying auth state listeners.
    Notified 0 auth state listeners.
    05-13 04:49:18.651 10714-10714/? D/FirebaseApp: Notifying auth state listeners.
    Notified 0 auth state listeners.
    05-13 04:49:18.736 10714-10743/? I/OpenGLRenderer: Initialized EGL, version 1.4
    05-13 04:49:18.736 10714-10743/? D/OpenGLRenderer: Swap behavior 1
    05-13 04:49:18.737 10714-10743/? W/OpenGLRenderer: Failed to choose config with EGL_SWAP_BEHAVIOR_PRESERVED, retrying without...
    05-13 04:49:18.737 10714-10743/? D/OpenGLRenderer: Swap behavior 0
    05-13 04:49:18.758 10714-10743/? D/EGL_emulation: eglCreateContext: 0xa9b858a0: maj 2 min 0 rcv 2
    05-13 04:49:18.818 10714-10743/? D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 04:49:18.858 10714-10714/? W/art: Before Android 4.1, method int android.support.v7.widget.DropDownListView.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
    05-13 04:49:18.866 10714-10743/? D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 04:49:18.991 10714-10738/com.example.gmachine.mychat D/FA: Connected to remote service
    05-13 04:49:18.991 10714-10738/com.example.gmachine.mychat V/FA: Processing queued up service tasks: 4
    05-13 04:49:24.124 10714-10738/com.example.gmachine.mychat V/FA: Inactivity, disconnecting from the service
    05-13 04:49:28.720 10714-10719/com.example.gmachine.mychat I/art: Do partial code cache collection, code=27KB, data=29KB
    05-13 04:49:28.722 10714-10719/com.example.gmachine.mychat I/art: After code cache collection, code=27KB, data=29KB
    Increasing code cache capacity to 128KB
    05-13 04:49:30.937 10714-10714/com.example.gmachine.mychat W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
    05-13 04:49:33.192 10714-10719/com.example.gmachine.mychat I/art: Do partial code cache collection, code=62KB, data=55KB
    After code cache collection, code=62KB, data=55KB
    Increasing code cache capacity to 256KB
    05-13 04:49:34.038 10714-10714/com.example.gmachine.mychat W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
    05-13 04:49:38.664 10714-10714/com.example.gmachine.mychat W/System: ClassLoader referenced unknown path: /system/priv-app/PrebuiltGmsCore/lib/x86
    05-13 04:49:38.664 10714-10714/com.example.gmachine.mychat D/ApplicationLoaders: ignored Vulkan layer search path /system/priv-app/PrebuiltGmsCore/lib/x86:/system/fake-libs:/system/priv-app/PrebuiltGmsCore/PrebuiltGmsCore.apk!/lib/x86:/system/lib:/vendor/lib for namespace 0xa9d54090
    05-13 04:49:38.695 10714-10714/com.example.gmachine.mychat W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
    05-13 04:49:38.695 10714-10714/com.example.gmachine.mychat W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzal@1b80aea
    05-13 04:49:38.717 10714-10988/com.example.gmachine.mychat W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
    05-13 04:49:38.723 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
    [FirebaseAuth:] Preparing to create service connection to gms implementation
    05-13 04:49:39.351 10714-10714/com.example.gmachine.mychat D/z: onComplete: Failed=The password is invalid or the user does not have a password.
    05-13 04:49:39.493 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 04:49:39.529 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 04:54:38.844 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
    [FirebaseAuth:] Preparing to create service connection to gms implementation
    05-13 05:02:01.317 10714-10739/com.example.gmachine.mychat W/System: ClassLoader referenced unknown path: /data/data/com.example.gmachine.mychat/lib
    05-13 05:02:01.346 10714-19878/com.example.gmachine.mychat V/FA: Recording user engagement, ms: 762757
    05-13 05:02:01.347 10714-19878/com.example.gmachine.mychat V/FA: Connecting to remote service
    05-13 05:02:01.348 10714-19878/com.example.gmachine.mychat V/FA: Activity paused, time: 29018004
    05-13 05:02:01.408 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 05:02:01.416 10714-19878/com.example.gmachine.mychat D/FA: Logging event (FE): user_engagement(_e), Bundle[{firebase_event_origin(_o)=auto, engagement_time_msec(_et)=762757, firebase_screen_class(_sc)=LogIn, firebase_screen_id(_si)=-7531630852293217533}]
    05-13 05:02:01.535 10714-10714/com.example.gmachine.mychat V/FA: onActivityCreated
    05-13 05:02:01.538 10714-19878/com.example.gmachine.mychat V/FA: Connection attempt already in progress
    05-13 05:02:01.663 10714-19878/com.example.gmachine.mychat V/FA: Connection attempt already in progress
    Activity resumed, time: 29018325
    05-13 05:02:02.308 10714-19878/com.example.gmachine.mychat D/FA: Connected to remote service
    05-13 05:02:02.308 10714-19878/com.example.gmachine.mychat V/FA: Processing queued up service tasks: 3
    05-13 05:02:02.310 10714-10714/com.example.gmachine.mychat I/Choreographer: Skipped 33 frames! The application may be doing too much work on its main thread.
    05-13 05:02:02.317 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 05:02:02.380 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 05:02:02.393 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 05:02:07.340 10714-19878/com.example.gmachine.mychat V/FA: Inactivity, disconnecting from the service
    05-13 05:02:11.505 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 05:02:11.772 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 05:02:13.726 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 05:02:14.138 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 05:02:29.855 10714-10714/com.example.gmachine.mychat W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
    05-13 05:02:29.940 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 05:02:30.353 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 05:02:33.796 10714-10714/com.example.gmachine.mychat W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzal@1b80aea
    05-13 05:02:33.797 10714-10988/com.example.gmachine.mychat W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
    05-13 05:02:33.797 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
    [FirebaseAuth:] Preparing to create service connection to gms implementation
    05-13 05:02:34.840 10714-10714/com.example.gmachine.mychat D/z: onComplete: Failed=The password is invalid or the user does not have a password.
    05-13 05:02:34.889 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 05:02:34.913 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
    05-13 05:07:33.860 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
    [FirebaseAuth:] Preparing to create service connection to gms implementation









    share|improve this question
























      up vote
      0
      down vote

      favorite
      2









      up vote
      0
      down vote

      favorite
      2






      2





      I'm trying to create a simple app with user's profile's using firebase and I've got a problem. Sign Up function works well and I can see registered accounts in my Firebase console, but Sign In doesn't works well. I've got "password is invalid or the user does not have a password." exception. Can anyone help me with this please. My method to LogIn typed below.



       private void userLogin(){
      String email = emailText.getText().toString().trim();
      String password = passwordText.getText().toString().trim();


      if (TextUtils.isEmpty(email)){
      Toast.makeText(this,"Please enter email", Toast.LENGTH_SHORT).show();
      return;
      }
      if (TextUtils.isEmpty(password)) {
      Toast.makeText(this,"Please enter password", Toast.LENGTH_SHORT).show();
      return;
      }
      firebaseAuth.signInWithEmailAndPassword(email, password)
      .addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
      @Override
      public void onComplete(@NonNull Task<AuthResult> task) {
      if(task.isSuccessful()){
      Toast.makeText(LogIn.this,"You are logged in", Toast.LENGTH_SHORT).show();
      }
      else{
      Toast.makeText(LogIn.this,"MISTAKE", Toast.LENGTH_SHORT).show();
      Log.d("z", "onComplete: Failed=" + task.getException().getMessage());
      }
      }
      });
      }


      LogCat:



          05-13 04:49:17.944 10714-10714/? I/art: Not late-enabling -Xcheck:jni (already on)
      05-13 04:49:17.944 10714-10714/? W/art: Unexpected CPU variant for X86 using defaults: x86
      05-13 04:49:17.964 10714-10721/? E/art: Failed sending reply to debugger: Broken pipe
      05-13 04:49:17.964 10714-10721/? I/art: Debugger is no longer active
      Starting a blocking GC Instrumentation
      05-13 04:49:18.144 10714-10714/? W/System: ClassLoader referenced unknown path: /data/app/com.example.gmachine.mychat-1/lib/x86
      05-13 04:49:18.231 10714-10714/? D/FirebaseAuth: Notifying id token listeners about user ( KUXl4u7sy6OdwE0P3fmCRWyHugz1 ).
      05-13 04:49:18.250 10714-10714/? D/FirebaseAuth: Notifying id token listeners about user ( KUXl4u7sy6OdwE0P3fmCRWyHugz1 ).
      05-13 04:49:18.258 10714-10714/? D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
      05-13 04:49:18.324 10714-10714/? V/FA: Registered activity lifecycle callback
      05-13 04:49:18.328 10714-10714/? I/FirebaseInitProvider: FirebaseApp initialization successful
      05-13 04:49:18.333 10714-10714/? I/InstantRun: starting instant run server: is main process
      05-13 04:49:18.354 10714-10738/? V/FA: Collection enabled
      App package, google app id: com.example.gmachine.mychat, 1:411464926772:android:67ab72bb5465b580
      05-13 04:49:18.354 10714-10738/? I/FA: App measurement is starting up, version: 12451
      To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
      05-13 04:49:18.355 10714-10738/? I/FA: To enable faster debug mode event logging run:
      adb shell setprop debug.firebase.analytics.app com.example.gmachine.mychat
      05-13 04:49:18.355 10714-10738/? D/FA: Debug-level message logging enabled
      05-13 04:49:18.372 10714-10738/? V/FA: Cancelling job. JobID: 67470213
      05-13 04:49:18.424 10714-10714/? W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
      05-13 04:49:18.430 10714-10738/? V/FA: Connecting to remote service
      05-13 04:49:18.432 10714-10714/? V/FA: onActivityCreated
      05-13 04:49:18.503 10714-10738/? V/FA: Connection attempt already in progress
      05-13 04:49:18.590 10714-10738/? I/FA: Tag Manager is not found and thus will not be used
      05-13 04:49:18.600 10714-10738/? D/FA: Logging event (FE): screen_view(_vs), Bundle[{firebase_event_origin(_o)=auto, firebase_screen_class(_sc)=LogIn, firebase_screen_id(_si)=-7531630852293217533}]
      05-13 04:49:18.617 10714-10738/? V/FA: Connection attempt already in progress
      05-13 04:49:18.618 10714-10738/? V/FA: Connection attempt already in progress
      05-13 04:49:18.622 10714-10738/? V/FA: Activity resumed, time: 28255253
      05-13 04:49:18.650 10714-10714/? D/FirebaseApp: Notifying auth state listeners.
      Notified 0 auth state listeners.
      05-13 04:49:18.651 10714-10714/? D/FirebaseApp: Notifying auth state listeners.
      Notified 0 auth state listeners.
      05-13 04:49:18.736 10714-10743/? I/OpenGLRenderer: Initialized EGL, version 1.4
      05-13 04:49:18.736 10714-10743/? D/OpenGLRenderer: Swap behavior 1
      05-13 04:49:18.737 10714-10743/? W/OpenGLRenderer: Failed to choose config with EGL_SWAP_BEHAVIOR_PRESERVED, retrying without...
      05-13 04:49:18.737 10714-10743/? D/OpenGLRenderer: Swap behavior 0
      05-13 04:49:18.758 10714-10743/? D/EGL_emulation: eglCreateContext: 0xa9b858a0: maj 2 min 0 rcv 2
      05-13 04:49:18.818 10714-10743/? D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 04:49:18.858 10714-10714/? W/art: Before Android 4.1, method int android.support.v7.widget.DropDownListView.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
      05-13 04:49:18.866 10714-10743/? D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 04:49:18.991 10714-10738/com.example.gmachine.mychat D/FA: Connected to remote service
      05-13 04:49:18.991 10714-10738/com.example.gmachine.mychat V/FA: Processing queued up service tasks: 4
      05-13 04:49:24.124 10714-10738/com.example.gmachine.mychat V/FA: Inactivity, disconnecting from the service
      05-13 04:49:28.720 10714-10719/com.example.gmachine.mychat I/art: Do partial code cache collection, code=27KB, data=29KB
      05-13 04:49:28.722 10714-10719/com.example.gmachine.mychat I/art: After code cache collection, code=27KB, data=29KB
      Increasing code cache capacity to 128KB
      05-13 04:49:30.937 10714-10714/com.example.gmachine.mychat W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
      05-13 04:49:33.192 10714-10719/com.example.gmachine.mychat I/art: Do partial code cache collection, code=62KB, data=55KB
      After code cache collection, code=62KB, data=55KB
      Increasing code cache capacity to 256KB
      05-13 04:49:34.038 10714-10714/com.example.gmachine.mychat W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
      05-13 04:49:38.664 10714-10714/com.example.gmachine.mychat W/System: ClassLoader referenced unknown path: /system/priv-app/PrebuiltGmsCore/lib/x86
      05-13 04:49:38.664 10714-10714/com.example.gmachine.mychat D/ApplicationLoaders: ignored Vulkan layer search path /system/priv-app/PrebuiltGmsCore/lib/x86:/system/fake-libs:/system/priv-app/PrebuiltGmsCore/PrebuiltGmsCore.apk!/lib/x86:/system/lib:/vendor/lib for namespace 0xa9d54090
      05-13 04:49:38.695 10714-10714/com.example.gmachine.mychat W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
      05-13 04:49:38.695 10714-10714/com.example.gmachine.mychat W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzal@1b80aea
      05-13 04:49:38.717 10714-10988/com.example.gmachine.mychat W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
      05-13 04:49:38.723 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
      [FirebaseAuth:] Preparing to create service connection to gms implementation
      05-13 04:49:39.351 10714-10714/com.example.gmachine.mychat D/z: onComplete: Failed=The password is invalid or the user does not have a password.
      05-13 04:49:39.493 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 04:49:39.529 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 04:54:38.844 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
      [FirebaseAuth:] Preparing to create service connection to gms implementation
      05-13 05:02:01.317 10714-10739/com.example.gmachine.mychat W/System: ClassLoader referenced unknown path: /data/data/com.example.gmachine.mychat/lib
      05-13 05:02:01.346 10714-19878/com.example.gmachine.mychat V/FA: Recording user engagement, ms: 762757
      05-13 05:02:01.347 10714-19878/com.example.gmachine.mychat V/FA: Connecting to remote service
      05-13 05:02:01.348 10714-19878/com.example.gmachine.mychat V/FA: Activity paused, time: 29018004
      05-13 05:02:01.408 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:01.416 10714-19878/com.example.gmachine.mychat D/FA: Logging event (FE): user_engagement(_e), Bundle[{firebase_event_origin(_o)=auto, engagement_time_msec(_et)=762757, firebase_screen_class(_sc)=LogIn, firebase_screen_id(_si)=-7531630852293217533}]
      05-13 05:02:01.535 10714-10714/com.example.gmachine.mychat V/FA: onActivityCreated
      05-13 05:02:01.538 10714-19878/com.example.gmachine.mychat V/FA: Connection attempt already in progress
      05-13 05:02:01.663 10714-19878/com.example.gmachine.mychat V/FA: Connection attempt already in progress
      Activity resumed, time: 29018325
      05-13 05:02:02.308 10714-19878/com.example.gmachine.mychat D/FA: Connected to remote service
      05-13 05:02:02.308 10714-19878/com.example.gmachine.mychat V/FA: Processing queued up service tasks: 3
      05-13 05:02:02.310 10714-10714/com.example.gmachine.mychat I/Choreographer: Skipped 33 frames! The application may be doing too much work on its main thread.
      05-13 05:02:02.317 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:02.380 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:02.393 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:07.340 10714-19878/com.example.gmachine.mychat V/FA: Inactivity, disconnecting from the service
      05-13 05:02:11.505 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:11.772 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:13.726 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:14.138 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:29.855 10714-10714/com.example.gmachine.mychat W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
      05-13 05:02:29.940 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:30.353 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:33.796 10714-10714/com.example.gmachine.mychat W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzal@1b80aea
      05-13 05:02:33.797 10714-10988/com.example.gmachine.mychat W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
      05-13 05:02:33.797 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
      [FirebaseAuth:] Preparing to create service connection to gms implementation
      05-13 05:02:34.840 10714-10714/com.example.gmachine.mychat D/z: onComplete: Failed=The password is invalid or the user does not have a password.
      05-13 05:02:34.889 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:34.913 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:07:33.860 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
      [FirebaseAuth:] Preparing to create service connection to gms implementation









      share|improve this question













      I'm trying to create a simple app with user's profile's using firebase and I've got a problem. Sign Up function works well and I can see registered accounts in my Firebase console, but Sign In doesn't works well. I've got "password is invalid or the user does not have a password." exception. Can anyone help me with this please. My method to LogIn typed below.



       private void userLogin(){
      String email = emailText.getText().toString().trim();
      String password = passwordText.getText().toString().trim();


      if (TextUtils.isEmpty(email)){
      Toast.makeText(this,"Please enter email", Toast.LENGTH_SHORT).show();
      return;
      }
      if (TextUtils.isEmpty(password)) {
      Toast.makeText(this,"Please enter password", Toast.LENGTH_SHORT).show();
      return;
      }
      firebaseAuth.signInWithEmailAndPassword(email, password)
      .addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
      @Override
      public void onComplete(@NonNull Task<AuthResult> task) {
      if(task.isSuccessful()){
      Toast.makeText(LogIn.this,"You are logged in", Toast.LENGTH_SHORT).show();
      }
      else{
      Toast.makeText(LogIn.this,"MISTAKE", Toast.LENGTH_SHORT).show();
      Log.d("z", "onComplete: Failed=" + task.getException().getMessage());
      }
      }
      });
      }


      LogCat:



          05-13 04:49:17.944 10714-10714/? I/art: Not late-enabling -Xcheck:jni (already on)
      05-13 04:49:17.944 10714-10714/? W/art: Unexpected CPU variant for X86 using defaults: x86
      05-13 04:49:17.964 10714-10721/? E/art: Failed sending reply to debugger: Broken pipe
      05-13 04:49:17.964 10714-10721/? I/art: Debugger is no longer active
      Starting a blocking GC Instrumentation
      05-13 04:49:18.144 10714-10714/? W/System: ClassLoader referenced unknown path: /data/app/com.example.gmachine.mychat-1/lib/x86
      05-13 04:49:18.231 10714-10714/? D/FirebaseAuth: Notifying id token listeners about user ( KUXl4u7sy6OdwE0P3fmCRWyHugz1 ).
      05-13 04:49:18.250 10714-10714/? D/FirebaseAuth: Notifying id token listeners about user ( KUXl4u7sy6OdwE0P3fmCRWyHugz1 ).
      05-13 04:49:18.258 10714-10714/? D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
      05-13 04:49:18.324 10714-10714/? V/FA: Registered activity lifecycle callback
      05-13 04:49:18.328 10714-10714/? I/FirebaseInitProvider: FirebaseApp initialization successful
      05-13 04:49:18.333 10714-10714/? I/InstantRun: starting instant run server: is main process
      05-13 04:49:18.354 10714-10738/? V/FA: Collection enabled
      App package, google app id: com.example.gmachine.mychat, 1:411464926772:android:67ab72bb5465b580
      05-13 04:49:18.354 10714-10738/? I/FA: App measurement is starting up, version: 12451
      To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
      05-13 04:49:18.355 10714-10738/? I/FA: To enable faster debug mode event logging run:
      adb shell setprop debug.firebase.analytics.app com.example.gmachine.mychat
      05-13 04:49:18.355 10714-10738/? D/FA: Debug-level message logging enabled
      05-13 04:49:18.372 10714-10738/? V/FA: Cancelling job. JobID: 67470213
      05-13 04:49:18.424 10714-10714/? W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
      05-13 04:49:18.430 10714-10738/? V/FA: Connecting to remote service
      05-13 04:49:18.432 10714-10714/? V/FA: onActivityCreated
      05-13 04:49:18.503 10714-10738/? V/FA: Connection attempt already in progress
      05-13 04:49:18.590 10714-10738/? I/FA: Tag Manager is not found and thus will not be used
      05-13 04:49:18.600 10714-10738/? D/FA: Logging event (FE): screen_view(_vs), Bundle[{firebase_event_origin(_o)=auto, firebase_screen_class(_sc)=LogIn, firebase_screen_id(_si)=-7531630852293217533}]
      05-13 04:49:18.617 10714-10738/? V/FA: Connection attempt already in progress
      05-13 04:49:18.618 10714-10738/? V/FA: Connection attempt already in progress
      05-13 04:49:18.622 10714-10738/? V/FA: Activity resumed, time: 28255253
      05-13 04:49:18.650 10714-10714/? D/FirebaseApp: Notifying auth state listeners.
      Notified 0 auth state listeners.
      05-13 04:49:18.651 10714-10714/? D/FirebaseApp: Notifying auth state listeners.
      Notified 0 auth state listeners.
      05-13 04:49:18.736 10714-10743/? I/OpenGLRenderer: Initialized EGL, version 1.4
      05-13 04:49:18.736 10714-10743/? D/OpenGLRenderer: Swap behavior 1
      05-13 04:49:18.737 10714-10743/? W/OpenGLRenderer: Failed to choose config with EGL_SWAP_BEHAVIOR_PRESERVED, retrying without...
      05-13 04:49:18.737 10714-10743/? D/OpenGLRenderer: Swap behavior 0
      05-13 04:49:18.758 10714-10743/? D/EGL_emulation: eglCreateContext: 0xa9b858a0: maj 2 min 0 rcv 2
      05-13 04:49:18.818 10714-10743/? D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 04:49:18.858 10714-10714/? W/art: Before Android 4.1, method int android.support.v7.widget.DropDownListView.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
      05-13 04:49:18.866 10714-10743/? D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 04:49:18.991 10714-10738/com.example.gmachine.mychat D/FA: Connected to remote service
      05-13 04:49:18.991 10714-10738/com.example.gmachine.mychat V/FA: Processing queued up service tasks: 4
      05-13 04:49:24.124 10714-10738/com.example.gmachine.mychat V/FA: Inactivity, disconnecting from the service
      05-13 04:49:28.720 10714-10719/com.example.gmachine.mychat I/art: Do partial code cache collection, code=27KB, data=29KB
      05-13 04:49:28.722 10714-10719/com.example.gmachine.mychat I/art: After code cache collection, code=27KB, data=29KB
      Increasing code cache capacity to 128KB
      05-13 04:49:30.937 10714-10714/com.example.gmachine.mychat W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
      05-13 04:49:33.192 10714-10719/com.example.gmachine.mychat I/art: Do partial code cache collection, code=62KB, data=55KB
      After code cache collection, code=62KB, data=55KB
      Increasing code cache capacity to 256KB
      05-13 04:49:34.038 10714-10714/com.example.gmachine.mychat W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
      05-13 04:49:38.664 10714-10714/com.example.gmachine.mychat W/System: ClassLoader referenced unknown path: /system/priv-app/PrebuiltGmsCore/lib/x86
      05-13 04:49:38.664 10714-10714/com.example.gmachine.mychat D/ApplicationLoaders: ignored Vulkan layer search path /system/priv-app/PrebuiltGmsCore/lib/x86:/system/fake-libs:/system/priv-app/PrebuiltGmsCore/PrebuiltGmsCore.apk!/lib/x86:/system/lib:/vendor/lib for namespace 0xa9d54090
      05-13 04:49:38.695 10714-10714/com.example.gmachine.mychat W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
      05-13 04:49:38.695 10714-10714/com.example.gmachine.mychat W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzal@1b80aea
      05-13 04:49:38.717 10714-10988/com.example.gmachine.mychat W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
      05-13 04:49:38.723 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
      [FirebaseAuth:] Preparing to create service connection to gms implementation
      05-13 04:49:39.351 10714-10714/com.example.gmachine.mychat D/z: onComplete: Failed=The password is invalid or the user does not have a password.
      05-13 04:49:39.493 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 04:49:39.529 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 04:54:38.844 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
      [FirebaseAuth:] Preparing to create service connection to gms implementation
      05-13 05:02:01.317 10714-10739/com.example.gmachine.mychat W/System: ClassLoader referenced unknown path: /data/data/com.example.gmachine.mychat/lib
      05-13 05:02:01.346 10714-19878/com.example.gmachine.mychat V/FA: Recording user engagement, ms: 762757
      05-13 05:02:01.347 10714-19878/com.example.gmachine.mychat V/FA: Connecting to remote service
      05-13 05:02:01.348 10714-19878/com.example.gmachine.mychat V/FA: Activity paused, time: 29018004
      05-13 05:02:01.408 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:01.416 10714-19878/com.example.gmachine.mychat D/FA: Logging event (FE): user_engagement(_e), Bundle[{firebase_event_origin(_o)=auto, engagement_time_msec(_et)=762757, firebase_screen_class(_sc)=LogIn, firebase_screen_id(_si)=-7531630852293217533}]
      05-13 05:02:01.535 10714-10714/com.example.gmachine.mychat V/FA: onActivityCreated
      05-13 05:02:01.538 10714-19878/com.example.gmachine.mychat V/FA: Connection attempt already in progress
      05-13 05:02:01.663 10714-19878/com.example.gmachine.mychat V/FA: Connection attempt already in progress
      Activity resumed, time: 29018325
      05-13 05:02:02.308 10714-19878/com.example.gmachine.mychat D/FA: Connected to remote service
      05-13 05:02:02.308 10714-19878/com.example.gmachine.mychat V/FA: Processing queued up service tasks: 3
      05-13 05:02:02.310 10714-10714/com.example.gmachine.mychat I/Choreographer: Skipped 33 frames! The application may be doing too much work on its main thread.
      05-13 05:02:02.317 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:02.380 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:02.393 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:07.340 10714-19878/com.example.gmachine.mychat V/FA: Inactivity, disconnecting from the service
      05-13 05:02:11.505 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:11.772 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:13.726 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:14.138 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:29.855 10714-10714/com.example.gmachine.mychat W/IInputConnectionWrapper: finishComposingText on inactive InputConnection
      05-13 05:02:29.940 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:30.353 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:33.796 10714-10714/com.example.gmachine.mychat W/BiChannelGoogleApi: [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzal@1b80aea
      05-13 05:02:33.797 10714-10988/com.example.gmachine.mychat W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
      05-13 05:02:33.797 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
      [FirebaseAuth:] Preparing to create service connection to gms implementation
      05-13 05:02:34.840 10714-10714/com.example.gmachine.mychat D/z: onComplete: Failed=The password is invalid or the user does not have a password.
      05-13 05:02:34.889 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:02:34.913 10714-10743/com.example.gmachine.mychat D/EGL_emulation: eglMakeCurrent: 0xa9b858a0: ver 2 0 (tinfo 0x8c54b1d0)
      05-13 05:07:33.860 10714-10988/com.example.gmachine.mychat I/FirebaseAuth: [FirebaseAuth:] Loading module via FirebaseOptions.
      [FirebaseAuth:] Preparing to create service connection to gms implementation






      java android firebase firebase-authentication






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked May 13 at 5:43









      Grigory Shimichev

      31




      31
























          2 Answers
          2






          active

          oldest

          votes

















          up vote
          0
          down vote













          i have use this code and its working fine.and also check your firebase authentication rule part where must be email and password enable .



              FirebaseAuth mAuth;
          mAuth = FirebaseAuth.getInstance();


          final String email=username.getText().toString();
          final String password=pass.getText().toString();
          Log.d("12345",email+password);
          if(email.equals("")||password.equals(""))
          Toast.makeText(LogIn.this,"Fill both",Toast.LENGTH_SHORT).show();
          else
          {
          mProgressDialog.setMessage("Login....");
          mProgressDialog.show();
          mAuth.signInWithEmailAndPassword(email, password)
          .addOnCompleteListener(LogIn.this, new OnCompleteListener<AuthResult>() {
          @Override
          public void onComplete(@NonNull Task<AuthResult> task) {
          if (task.isSuccessful()) {
          // Sign in success, update UI with the signed-in user's information
          Log.d("12345", "signInWithEmail:success");


          Toast.makeText(LogIn.this,"valid email",Toast.LENGTH_LONG).show();

          mProgressDialog.dismiss();
          //updateUI(user);
          } else {
          // If sign in fails, display a message to the user.
          Log.w("12345", "signInWithEmail:failure", task.getException());
          mProgressDialog.dismiss();
          Toast.makeText(LogIn.this, "Authentication failed.",
          Toast.LENGTH_SHORT).show();
          }
          }
          });
          }





          share|improve this answer





















          • Thank you for your answer, but this code doesn't works too. I've got the same exception as before "password is invalid or the user does not have a password."
            – Grigory Shimichev
            May 13 at 7:00










          • whats about firebase authentication rule part.
            – Aman Khandelwal
            May 13 at 7:12










          • I'm not sure that I'm understand you, email and password is enabled in authorization providers, what else should I do?
            – Grigory Shimichev
            May 13 at 7:27


















          up vote
          0
          down vote













          I'd the same problem only to realize later that the I'd initialized the password field with a wrong resource id. Make sure these are correct






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














             

            draft saved


            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f50313124%2fandroid-firebase-login-failed-password-is-invalid-or-the-user-does-not-have-a-p%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            0
            down vote













            i have use this code and its working fine.and also check your firebase authentication rule part where must be email and password enable .



                FirebaseAuth mAuth;
            mAuth = FirebaseAuth.getInstance();


            final String email=username.getText().toString();
            final String password=pass.getText().toString();
            Log.d("12345",email+password);
            if(email.equals("")||password.equals(""))
            Toast.makeText(LogIn.this,"Fill both",Toast.LENGTH_SHORT).show();
            else
            {
            mProgressDialog.setMessage("Login....");
            mProgressDialog.show();
            mAuth.signInWithEmailAndPassword(email, password)
            .addOnCompleteListener(LogIn.this, new OnCompleteListener<AuthResult>() {
            @Override
            public void onComplete(@NonNull Task<AuthResult> task) {
            if (task.isSuccessful()) {
            // Sign in success, update UI with the signed-in user's information
            Log.d("12345", "signInWithEmail:success");


            Toast.makeText(LogIn.this,"valid email",Toast.LENGTH_LONG).show();

            mProgressDialog.dismiss();
            //updateUI(user);
            } else {
            // If sign in fails, display a message to the user.
            Log.w("12345", "signInWithEmail:failure", task.getException());
            mProgressDialog.dismiss();
            Toast.makeText(LogIn.this, "Authentication failed.",
            Toast.LENGTH_SHORT).show();
            }
            }
            });
            }





            share|improve this answer





















            • Thank you for your answer, but this code doesn't works too. I've got the same exception as before "password is invalid or the user does not have a password."
              – Grigory Shimichev
              May 13 at 7:00










            • whats about firebase authentication rule part.
              – Aman Khandelwal
              May 13 at 7:12










            • I'm not sure that I'm understand you, email and password is enabled in authorization providers, what else should I do?
              – Grigory Shimichev
              May 13 at 7:27















            up vote
            0
            down vote













            i have use this code and its working fine.and also check your firebase authentication rule part where must be email and password enable .



                FirebaseAuth mAuth;
            mAuth = FirebaseAuth.getInstance();


            final String email=username.getText().toString();
            final String password=pass.getText().toString();
            Log.d("12345",email+password);
            if(email.equals("")||password.equals(""))
            Toast.makeText(LogIn.this,"Fill both",Toast.LENGTH_SHORT).show();
            else
            {
            mProgressDialog.setMessage("Login....");
            mProgressDialog.show();
            mAuth.signInWithEmailAndPassword(email, password)
            .addOnCompleteListener(LogIn.this, new OnCompleteListener<AuthResult>() {
            @Override
            public void onComplete(@NonNull Task<AuthResult> task) {
            if (task.isSuccessful()) {
            // Sign in success, update UI with the signed-in user's information
            Log.d("12345", "signInWithEmail:success");


            Toast.makeText(LogIn.this,"valid email",Toast.LENGTH_LONG).show();

            mProgressDialog.dismiss();
            //updateUI(user);
            } else {
            // If sign in fails, display a message to the user.
            Log.w("12345", "signInWithEmail:failure", task.getException());
            mProgressDialog.dismiss();
            Toast.makeText(LogIn.this, "Authentication failed.",
            Toast.LENGTH_SHORT).show();
            }
            }
            });
            }





            share|improve this answer





















            • Thank you for your answer, but this code doesn't works too. I've got the same exception as before "password is invalid or the user does not have a password."
              – Grigory Shimichev
              May 13 at 7:00










            • whats about firebase authentication rule part.
              – Aman Khandelwal
              May 13 at 7:12










            • I'm not sure that I'm understand you, email and password is enabled in authorization providers, what else should I do?
              – Grigory Shimichev
              May 13 at 7:27













            up vote
            0
            down vote










            up vote
            0
            down vote









            i have use this code and its working fine.and also check your firebase authentication rule part where must be email and password enable .



                FirebaseAuth mAuth;
            mAuth = FirebaseAuth.getInstance();


            final String email=username.getText().toString();
            final String password=pass.getText().toString();
            Log.d("12345",email+password);
            if(email.equals("")||password.equals(""))
            Toast.makeText(LogIn.this,"Fill both",Toast.LENGTH_SHORT).show();
            else
            {
            mProgressDialog.setMessage("Login....");
            mProgressDialog.show();
            mAuth.signInWithEmailAndPassword(email, password)
            .addOnCompleteListener(LogIn.this, new OnCompleteListener<AuthResult>() {
            @Override
            public void onComplete(@NonNull Task<AuthResult> task) {
            if (task.isSuccessful()) {
            // Sign in success, update UI with the signed-in user's information
            Log.d("12345", "signInWithEmail:success");


            Toast.makeText(LogIn.this,"valid email",Toast.LENGTH_LONG).show();

            mProgressDialog.dismiss();
            //updateUI(user);
            } else {
            // If sign in fails, display a message to the user.
            Log.w("12345", "signInWithEmail:failure", task.getException());
            mProgressDialog.dismiss();
            Toast.makeText(LogIn.this, "Authentication failed.",
            Toast.LENGTH_SHORT).show();
            }
            }
            });
            }





            share|improve this answer












            i have use this code and its working fine.and also check your firebase authentication rule part where must be email and password enable .



                FirebaseAuth mAuth;
            mAuth = FirebaseAuth.getInstance();


            final String email=username.getText().toString();
            final String password=pass.getText().toString();
            Log.d("12345",email+password);
            if(email.equals("")||password.equals(""))
            Toast.makeText(LogIn.this,"Fill both",Toast.LENGTH_SHORT).show();
            else
            {
            mProgressDialog.setMessage("Login....");
            mProgressDialog.show();
            mAuth.signInWithEmailAndPassword(email, password)
            .addOnCompleteListener(LogIn.this, new OnCompleteListener<AuthResult>() {
            @Override
            public void onComplete(@NonNull Task<AuthResult> task) {
            if (task.isSuccessful()) {
            // Sign in success, update UI with the signed-in user's information
            Log.d("12345", "signInWithEmail:success");


            Toast.makeText(LogIn.this,"valid email",Toast.LENGTH_LONG).show();

            mProgressDialog.dismiss();
            //updateUI(user);
            } else {
            // If sign in fails, display a message to the user.
            Log.w("12345", "signInWithEmail:failure", task.getException());
            mProgressDialog.dismiss();
            Toast.makeText(LogIn.this, "Authentication failed.",
            Toast.LENGTH_SHORT).show();
            }
            }
            });
            }






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered May 13 at 6:39









            Aman Khandelwal

            4627




            4627












            • Thank you for your answer, but this code doesn't works too. I've got the same exception as before "password is invalid or the user does not have a password."
              – Grigory Shimichev
              May 13 at 7:00










            • whats about firebase authentication rule part.
              – Aman Khandelwal
              May 13 at 7:12










            • I'm not sure that I'm understand you, email and password is enabled in authorization providers, what else should I do?
              – Grigory Shimichev
              May 13 at 7:27


















            • Thank you for your answer, but this code doesn't works too. I've got the same exception as before "password is invalid or the user does not have a password."
              – Grigory Shimichev
              May 13 at 7:00










            • whats about firebase authentication rule part.
              – Aman Khandelwal
              May 13 at 7:12










            • I'm not sure that I'm understand you, email and password is enabled in authorization providers, what else should I do?
              – Grigory Shimichev
              May 13 at 7:27
















            Thank you for your answer, but this code doesn't works too. I've got the same exception as before "password is invalid or the user does not have a password."
            – Grigory Shimichev
            May 13 at 7:00




            Thank you for your answer, but this code doesn't works too. I've got the same exception as before "password is invalid or the user does not have a password."
            – Grigory Shimichev
            May 13 at 7:00












            whats about firebase authentication rule part.
            – Aman Khandelwal
            May 13 at 7:12




            whats about firebase authentication rule part.
            – Aman Khandelwal
            May 13 at 7:12












            I'm not sure that I'm understand you, email and password is enabled in authorization providers, what else should I do?
            – Grigory Shimichev
            May 13 at 7:27




            I'm not sure that I'm understand you, email and password is enabled in authorization providers, what else should I do?
            – Grigory Shimichev
            May 13 at 7:27












            up vote
            0
            down vote













            I'd the same problem only to realize later that the I'd initialized the password field with a wrong resource id. Make sure these are correct






            share|improve this answer



























              up vote
              0
              down vote













              I'd the same problem only to realize later that the I'd initialized the password field with a wrong resource id. Make sure these are correct






              share|improve this answer

























                up vote
                0
                down vote










                up vote
                0
                down vote









                I'd the same problem only to realize later that the I'd initialized the password field with a wrong resource id. Make sure these are correct






                share|improve this answer














                I'd the same problem only to realize later that the I'd initialized the password field with a wrong resource id. Make sure these are correct







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Nov 8 at 16:55









                Zoe

                10.4k73575




                10.4k73575










                answered Nov 7 at 12:22









                Vicky

                1




                1






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f50313124%2fandroid-firebase-login-failed-password-is-invalid-or-the-user-does-not-have-a-p%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    這個網誌中的熱門文章

                    Hercules Kyvelos

                    Tangent Lines Diagram Along Smooth Curve

                    Yusuf al-Mu'taman ibn Hud