Alright, so basically, I want to be able to force my users to go through the first activity everytime they bring the app back up, so that it checks for updates. Since later versions of android prevent me from overriding the home button, I had relied on calling the onStop method to force the process to kill itself, forcing a reload when the app is opened again.
Problem is, now I cannot transition to new activities without the onStop method being called. Is there any other way to accomplish this, or to keep the onStop method from being called on activity transition?