Xamrin.Auth (https://github.com/xamarin/Xamarin.Auth), when used on Android, requires any method that accesses the account store to pass a Context
to the call.
I am wondering if it's ok you always use the Application Context via getApplicationContext()
My use case is initializing an IOC at application startup and passing that context to my lib which manages Xamarin.Auth calls.
I am either missing it or the Xamarin.Auth docs don't say which context is appropriate to use: Application vs Activity.