This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Represents an asynchronous login/registration task used to authenticate | |
| * the user. | |
| */ | |
| public class UserLoginTask extends AsyncTask<Void, Void, Boolean> { | |
| private Context mContext; | |
| private final String mEmail; | |
| private final String mPassword; |
NewerOlder