Is there a way to set which activity is to be started anytime the application is opened? Obviously I have the Intent Filters android.intent.action.MAIN and android.intent.category.LAUNCHER, but I want it to reset to this activity even if the App wasn’t completely killed (if it wasn’t, now it just goes back to the last activity that was open)
Share
So you want to go straight to your initial activity every time you start the app from the launcher? Set android:clearTaskOnLaunch to true in your Activity tags in the manifest.
from the docs