Juan Mendez

Results 6 comments of Juan Mendez

I was struggling with 1.10.0 and since I am new to `injectable` was going nuts what exactly I was doing wrong as the dart files weren't completing. Thanks for sharing...

prior to saving your authState json, ensure you have updated the authState with an `authenticationResponse` and also with `tokenResponse` ``` // this is following the activity result authState.update(authorizationResponse, ex) //...

This is quite helpful, if you see no refresh-token being provided either the first time tokens are generated or when they are refreshed, make sure to include `offline_access` to your...

It worked for me like this using 0.71 `private var authService: AuthorizationService? = null` ``` override fun onStop() { // this needs to be done before returning, not in onActivityResult...

If you are interested to look how flows work, I have been implementing flows over LiveData using the Github browser sample https://github.com/juanmendez/android-architecture-components. I have tested most of the core classes...

I tried this early this year https://github.com/juanmendez/android-architecture-components. I didn't get a chance to go over all unit tests since they are explicitly using RxJava. I was able to use the...