Sign-in Sync section
If parent app has its own authentication process in place and parent app does not want to use GluedIn authentication process than Parent app will pass certain mandatory information to GluedIn SDK via a method which will allow GluedIn to call authentication method internally and allow user to sign in inside the Gluedin SDK as well.
Required info is:
  • Email (Mandatory field): “your logged in user email id”.
  • Password (Mandatory field): “your logged in user password”.
  • fullName (Mandatory): “ logged in user full name” .
	
	   
  setUserInfoForAutoSignIn(UserInfoAutoSignIn("email_id", "password", "full_name"))
GluedInInitializer.Configurations.Builder()
......
.setUserInfoForAutoSignIn(UserInfoAutoSignIn("email_id", "password", "full_name"))
..........
.create()