0

As a default behavior, when an android app is running and you click the hard device Home button, you are able to see that app on the OS running apps list. but I can't see my app on the list after clicking Home button? I've used neither android:excludeFromRecents="true" or android:noHistory= "true" on my manifest file.

Vahid Ghadiri
  • 3,966
  • 7
  • 36
  • 45
  • http://stackoverflow.com/questions/3762763/how-to-remove-application-from-recent-application-list – berserk Oct 11 '14 at 08:52
  • you may have used **android:excludeFromRecents="true"** under activity tag in Manifest file... remove that – Arnav M. Oct 11 '14 at 08:58
  • I've used neither android:excludeFromRecents="true" or android:noHistory= "true" on my manifest file – Vahid Ghadiri Oct 11 '14 at 09:41
  • have you modified the behavior of your app on `onPause` or something like that? maybe you close the app when it's getting minimized or something like that – TomTsagk Oct 11 '14 at 12:11

1 Answers1

0

A special thanks to those guys who asked and answered this question How to remove application from recent application list?. specially the gentleman JackyLalala.

I just wanna to say you, don't leave the label attribute with empty string in the activity tag of your manifest. If you do this (android:label="") you won't see your app name in the OS running app list. At least remove the entire attribute or fill it with a nice string.

Community
  • 1
  • 1
Vahid Ghadiri
  • 3,966
  • 7
  • 36
  • 45