How to close recent activities(press and hold button home) when activity started from services?
Tried android:excludeFromRecents="true"
and android:noHistory="true"
, but it works if I close manual from myActivity
. But, when close finish()
from services using Broadcast Receiver
, it doesn't work.
So, how to close recent activities when it close automatic from services? Please help . .