Uno Platform Google Signin OAuth2 Setup #18868
RSReswin
started this conversation in
Show and tell
Replies: 1 comment 3 replies
-
Forget to say No Need any Backend Server Connections! |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Follow The Steps in This Video To Config Google Api Library.
Google.Lib.Api.Setup.mp4
VIdeo Time : 02:05 =
Video Time : 02:10 = Must Add Test User Gmail ID to Test The Google Signin in Development other wise in Application Throw Error!
Video Time : 03:30 =
Video Time : 03:35 = They have 2 Keystore one for Debug Build another one for Relece Build
If you are going to Run Google SignIn Application in Debug Build Use This Cmd in Command Prompt = keytool -genkeypair -v -keystore debug.keystore -keyalg RSA -keysize 2048 -validity 10000 -alias androiddebugkey
If you are going to Run Google SignIn Application in Relece Build Use This Cmd in Command Prompt = keytool -genkeypair -v -keystore release-key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias release-key
Sample Video to Create Keystore = https://www.youtube.com/watch?v=NQTj5LpjVs4
To View Your KeyStore SHA1 Fingerprint use this Below Cmd in Command Prompt
Sample : keytool -list -v -keystore <keystore_filename> -alias <key_alias>
Debug Keystore : keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey
Relece Keystore : keytool -list -v -keystore release-key.jks -alias release-key
Video Time : 05:45 =
after done in your IDE =
after done install this package =
after install package past this code inside your = MainActivity.Android.cs
Uno Platform Google SignIn OAuth2 Login Sample
2024-11-20.21-41-36.mp4
Beta Was this translation helpful? Give feedback.
All reactions