App restarts whenever it goes to background

Mi app keeps restarting to splash screen and login page when i send it to background. Any ideas about why this is happening? Do i have to manually catch all pause and resume events?

  1. I would guess that your app is unloaded by the os of your device.
  2. I would recomend saving the user session, so that the user doesn’t have to login again ervery time thery open the app.

It seems like your app is restarting, so it likely hasn’t sth. to do with the pause and resume events.

I made some test with other phones and it seems it was a OS issue as you said, i tought it had something to do with configurations as the project has been created recently. User session storage is planned to be made too. Thanks for the reply!