[JWT Query] How to connect to same backend from two different android apps at same time

I am new to JWT. I have an android app which uses JWT refresh token to authorize to backend. With this model, if I login into new device then old device session will automatically expire. So far all good.

Now I want to clone same android app, with different package name though, to connect to same backend. Now I can keep sessions active a same time in both apps to same backend. How I can connect to same backend at time using two different android apps? Any pointers will be very helpful sothat I will explore further.

Hi @ramesh.jangama

Sessions are a cookie in the Auth0 tenant domain: Sessions

If your two apps use the same Auth0 tenant, you will get SSO and both will be active.

John