-
Notifications
You must be signed in to change notification settings - Fork 887
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
Crash when tried to login with a google account #153
Comments
Reading the description line of the exception, it is possible you have provided a non-Activity context to the constructor of AuthorizationService. |
Thanks for the reply. it is fixed |
I think there should be a way to construct AuthorizationService outside Activity context. This is needed when you want to use AuthorizationService from service, without UI. For example background synchronization is one of those usecases. Then you only have application context available. Currently it is not possible to customize how Intent is create as it is static method in AuthorizationManagementActivity: Working temporary fix: But maybe it would be better to provide a way to customize how Intents is created. Same kind of problem exist with threads: Would you consider to provide an option to customize how Intent is created? |
The text was updated successfully, but these errors were encountered: