I need to finish an application when it goes to the background, I'm using method finishAffinity() but it seems it does not work, someone can tell me another alternative
@Override
protected void onPause() {
finishAffinity()
super.onPause();
}
Here's answer
you can use this
Source and read more