Exemplo n.º 1
0
 void GoogleSuccessCallback(AndroidGoogleSignInAccount s)
 {
     //errorTxt.text = s.Token;
     uiHandler.email    = s.Email;
     uiHandler.password = "******";
     Invoke("makeASignIn", 1);
 }
 private void GoogleSuccessCallback(AndroidGoogleSignInAccount result)
 {
     _token  = "Login successful, your Email is: " + result.Email;
     _token += "\n your Name is: " + result.DisplayName;
     _token += "\n your ID is: " + result.Id;
     _token += "\n your Photo is: " + result.PhotoUrl;
     // _token += "\nand your Token: " + result.Token;
 }
Exemplo n.º 3
0
 private void GoogleSuccessCallback(AndroidGoogleSignInAccount result)
 {
     _token          = "Login successful, your Email is: " + result.Email;
     _token         += "\n your Name is: " + result.DisplayName;
     _token         += "\n your ID is: " + result.Id;
     _token         += "\n your Photo is: " + result.PhotoUrl;
     statusText.text = _token;
     Username        = result.DisplayName;
     Id       = result.Id;
     PhotoURL = result.PhotoUrl;
     Email    = result.Email;
     //rg.CekLoginFromGoogle();
     // _token += "\nand your Token: " + result.Token;
 }
 private void GoogleSuccessCallback(AndroidGoogleSignInAccount result)
 {
     _token  = "Login successfull, your Email is: " + result.Email;
     _token += "\nand your Token: " + result.Token;
 }
Exemplo n.º 5
0
 void GoogleSuccessCallback(AndroidGoogleSignInAccount s)
 {
     squareSprite.color = Color.green;
 }
Exemplo n.º 6
0
 void GoogleSuccessCallback(AndroidGoogleSignInAccount sucess_Args)
 {
     User_Email = sucess_Args.Email;
     Invoke("SignInWait", 1);
 }