-
-
Notifications
You must be signed in to change notification settings - Fork 78
fix: Apply various sign-in fixes #146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
ddef22a
e1f0140
59c57ee
f8e3db2
f0d5143
b2968c3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -208,7 +208,7 @@ class AuthSignInActivity : AppCompatActivity() { | |
| }) | ||
| } | ||
| Log.d(TAG, "Result: ${data.extras?.also { it.keySet() }}") | ||
| setResult(statusCode, data) | ||
| setResult(RESULT_OK, data) | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This caused a problem where the initiating app got the
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looking at upstream, this was already fixed: https://github.com/microg/GmsCore/blob/48bc2bb11c22ab9f943a35364cedcc95a0157392/play-services-core/src/main/kotlin/org/microg/gms/auth/signin/AuthSignInActivity.kt#L232 There's a lot more changes, though, that aren't a clean merge. |
||
| finish() | ||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We want the auth request to have the caller as
com.google.android.gms, notapp.revanced.android.gms