Skip to content Skip to sidebar Skip to footer

Error While Trying To Sign Up Using Email And Password Using Firebase In Android Studio

I am having this error while trying to run this code in android studio: Error: 2019-02-07 20:16:50.708 30406-30406/? E/Zygote: isWhitelistProcess - Process is Whitelisted 2019-02-0

Solution 1:

You need to move each of those getText().toString() into the onClick.

Otherwise, you are getting empty strings upon attaching the click listener to the button (i.e. before you type any text)

Also, you might want to see Android TextUtils isEmpty vs String.isEmpty

Post a Comment for "Error While Trying To Sign Up Using Email And Password Using Firebase In Android Studio"