I have an app. We login while using it. It's a multi-user app from the same device with one user at a time. When a user pushed the home button I need to quit the app, not go to background mode. When it goes to background mode it returns to the last active screen rather than the login screen the next tie someone clicks the app icon to enter the app.
How do I either:
close the app with home button press
or which method is called when the app becomes the foreground activity again from the background operation so I could write the code in there that I need to redirect the app to the login view?
Thanks!