Hello,
I just played a bit with the oidc android example [0] here and made it work with keycloak see my branch [1].
Note I tested this with latest Keycloak 1.9.x branch (but should work as well with current master 2.0.x):
If you want to play with the example app you need to setup your keycloak like so:
# Keycloak Setup
## create new client for the android app:
- clientid: android-app-1
- clientname: android-app-1
- access type: confidential
## Create a demo user
- username: demo
- password: demo
Note that I needed to use the AuthCode flow [2] since the Hybrid-Flow wasn't supported by Keycloak.
Hope you find that interesting :)
Cheers,
Thomas