algrid
algrid
@wu-hui thanks!
For now I'm trying to implement the revocation calls myself, but I can't find a way to get `access_token` and `refresh_token` that I need to revoke. Does Firebase allow to...
I'm having the same issue calling `MqttAndroidClient.isConnected`: ``` java.lang.IllegalArgumentException: Invalid ClientHandle at org.eclipse.paho.android.service.MqttService.getConnection(MqttService.java:588) at org.eclipse.paho.android.service.MqttService.isConnected(MqttService.java:413) at org.eclipse.paho.android.service.MqttAndroidClient.isConnected(MqttAndroidClient.java:251) ... ```
Are you on mqttv3:1.1.0? For me switching to paho.client.mqttv3:1.1.1 eliminated the problem.
@rafaelcr thanks, your solution works good!
Thanks @Rokanank, `estimatedItemSize` works for vertically scrolled `UICollectionView`. This should probably included into the docs here: https://github.com/material-components/material-components-ios/tree/develop/components/Chips#choice-chip But for horizontally scrolled `UICollectionView` I still get a broken layout with overlapping...
When you have a lot of reads and a small amount of writes that indeed may make sense, at least in theory. But I wonder if underlying SQLite API already...
@mikehardy The missing part in that solution is how to get `access_token` and `refresh_token` that we need to supply in order to revoke them. Does Firebase store them, can we...
@mikehardy ouch, sorry, I indeed missed that this repo isn't actually related to Firebase. :) I'm definitely missing something what happens during Apple Sign In + Firebase Authentication. It looks...
btw, storing `authorizationCode` for long time wouldn't probably make sense: > The code is single-use only and valid for five minutes. as mentioned here https://developer.apple.com/documentation/sign_in_with_apple/generate_and_validate_tokens If that's about the token...