AndroidMVPAuthenticationBoilerPlate


Source link: https://github.com/TakeoffAndroid/AndroidMVPAuthenticationBoilerPlate

AndroidMVPAuthenticationBoilerPlate

Login/Signup app which handles boiler plate Validation logics using MVP design patterns with SQLite Database.

Signup

Login

Update

Why this Repo?

AndroidMVPAuthenticationBoilerPlate is the code snippets to handle Signup/Login screen flow process with SQLite in an elegant manner using MVP design pattern. The ultimate focus of this repo to handle packaging structure, class hierarchy, module structure, database handling, validation checks, page tracking, sending parcelable object, storing object as strings using gson, offline data loading,etc.

SignupView.java

An Activity or Fragment should implement SignupView inorder to receive the callback for success and failure cases.

package com.takeoffandroid.mvpauthentication.modules.authentication.signup;  import com.takeoffandroid.mvpauthentication.models.Authentication;  public interface SignupView {

 void onValidationSuccess(Authentication authentication);

 void onValidationError(String message);
 
}
  

SignupPresenter.java

The set of methods and modules for signup that should be added in SignupPresenter. Eg: In this demo app I am validating credentials and processing the UI once after successful validation, so I have created method validateCredentials. The methods can be created as many based on the requirements to handle.

package com.takeoffandroid.mvpauthentication.modules.authentication.signup;  import com.takeoffandroid.mvpauthentication.models.Authentication;  public interface SignupPresenter {

void validateCredentials(Authentication authentication);

void onDestroy();
 
}
  

SignupPresenterImpl.java

SignupPresenterImpl implements and sends the callback to SignupView.

 package com.takeoffandroid.mvpauthentication.modules.authentication.signup;  import android.content.Context;  import com.takeoffandroid.mvpauthentication.models.Authentication;  public class SignupPresenterImpl implements SignupPresenter, SignupInteractor.OnSignupFinishedListener {

private final Context mContext;
  private SignupView signupView;
  private SignupInteractor signupInteractor;

public SignupPresenterImpl(Context context,SignupView signupView) {

this.mContext = context;

this.signupView = signupView;

this.signupInteractor = new SignupInteractorImpl();

  
}

@Override
  public void validateCredentials(Authentication authentication) {

signupInteractor.signup(mContext,authentication,this);

  
}

@Override public void onDestroy() {

signupView = null;
  
}

@Override
  public void onValidationSuccess(Authentication authentication) {

 if (signupView != null) {

 signupView.onValidationSuccess(authentication);

}

  
}

@Override
  public void onValidationError(String message) {

 if (signupView != null) {

 signupView.onValidationError(message);

}

  
}
 
}
  

SignupInteractor.java

These are the listeners that should be created to assign the values from SignupInteractorImpl. If the validation is success, it passes the value to onValidationSuccess and onValidationError, if validation fails. Please refer SignupInteractorImpl.java for clear cut implementation and usage of this listeners.

 package com.takeoffandroid.mvpauthentication.modules.authentication.signup;  import android.content.Context;  import com.takeoffandroid.mvpauthentication.models.Authentication;  public interface SignupInteractor {

interface OnSignupFinishedListener {

 void onValidationSuccess(Authentication authentication);

 void onValidationError(String message);

  
}

void signup(Context context, Authentication authentication, OnSignupFinishedListener listener);
  
}
  

SignupInteractorImpl.java

All the core logics part are handled from SignupInteractorImpl class. It perfoms all the necessary logics which are needed for user defined edit fields in the Signup registration.

 package com.takeoffandroid.mvpauthentication.modules.authentication.signup;  import android.content.Context;  import com.takeoffandroid.mvpauthentication.R; import com.takeoffandroid.mvpauthentication.database.DBAccess; import com.takeoffandroid.mvpauthentication.models.Authentication; import com.takeoffandroid.mvpauthentication.utils.ValidationUtils;  public class SignupInteractorImpl implements SignupInteractor {

 @Override
  public void signup(Context context, Authentication authentication, OnSignupFinishedListener listener) {

 String email = authentication.getEmail();

 String password = authentication.getPassword();

 String mobile = authentication.getMobile();

 String userType = authentication.getUserType();

 boolean error = false;

 if (ValidationUtils.isNullOrEmpty(new String[]{
email, password
}
)){

 listener.onValidationError(context.getResources().getString(R.string.wrong_form_data));

 error = true;

 return;

}

  if (!ValidationUtils.isValidMobile(mobile)){

 listener.onValidationError(context.getResources().getString(R.string.wrong_mobile));

 error = true;

 return;

}

 if (!ValidationUtils.isValidEmail(email)){

 listener.onValidationError(context.getResources().getString(R.string.wrong_email));

 error = true;

 return;

}

 if(DBAccess.init(context).isEmailAlreadyExists(email)){

 listener.onValidationError(context.getResources().getString(R.string.email_already_exists));

 error = true;

 return;

}

 if (!ValidationUtils.isValidPassword(password)){

 listener.onValidationError(context.getResources().getString(R.string.wrong_password));

 error = true;

 return;

}

 if(ValidationUtils.isNullOrEmpty(userType)){

 listener.onValidationError(context.getResources().getString(R.string.wrong_user_type));

 error = true;

 return;

}

  if (!error){

 listener.onValidationSuccess(authentication);

 return;

}

  
}
 
}

 

Resources

This is a small library to create floating windows with balloons.

A very beautiful and easy-to-use app that allows to copy code to the user's clipboard, when user receives message verification code.

KAM

KAM is an apk manager, backup, restore and more.

A comprehensive list of string-arrays that you may need on a daily basis when developing an Android app.

A dead simple way to to add tooltips for your Android app.

This is an alternative for android default CheckedTextView widget.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes