How does one quit an app from a non-activity/fragment? I have a class that handles events, and if a certain event happens, i wish to quit my app. I normally allow users to quit the app by doing the following:
getActivity().finish();
System.exit(0);
However, I can't call getActivity() from a class that's not an activity or fragment.
Thanks.