I have two apps. The use case is:
- If I open app A and I login, I get a custom token. I want to store it somehow in the KeyStore so if I open app B the token is there and I do not have to login again.
I've been reading about using the KeyStore to achieve this but I wasn't able to find a good working example or tutorial doing something similar.
This is easily achievable in iOS using the keyChain. But what about Android?
Only my apps should be able to get this token. Is there any info on how to store safely this info and share it between my apps? (using a backend server is not an option)
A working example would be great as a reference.
Thanks in advance.