what function do you call to stop an activity and go back to the previous activity code example
Example: kotlin return to previous activity
if you use fragment u should use
getActivity().onBackPressed();
if you use single activity u can use
finish();