When I pressed the home button, it will return to home, but the app is still running in the background.
How can I make my app completely shut down after pressing the home button?
When I pressed the home button, it will return to home, but the app is still running in the background.
How can I make my app completely shut down after pressing the home button?
android:clearTaskOnLaunch="true"
android:launchMode="singleTask"
android:excludeFromRecents="true"
Add these lines inside the Aandroid Manifest in activity that you launches...
Check out the solution of this question and override accordingly.